| 组织ID: |
com.github.davidmoten |
| 项目ID: |
rtree |
| 版本: |
0.2.1 |
| 最后修改时间: |
2019-10-25 03:37:38 |
| 包类型: |
jar |
| 标题: |
${project.artifactId} |
| 描述: |
Java implementation of an immutable in-memory R-Tree for spatial indexing |
| 相关URL: |
http://github.com/davidmoten/rtree |
| 大小: |
67.47KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>com.github.davidmoten</groupId>
<artifactId>rtree</artifactId>
<version>0.2.1</version>
</dependency>
|
| Gradle引入代码: |
com.github.davidmoten:rtree:0.2.1
|
| 下载Jar包: |
|
| POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>9</version>
</parent>
<groupId>com.github.davidmoten</groupId>
<artifactId>rtree</artifactId>
<version>0.2.1</version>
<name>${project.artifactId}</name>
<description>Java implementation of an immutable in-memory R-Tree for spatial indexing</description>
<packaging>jar</packaging>
<url>http://github.com/davidmoten/rtree</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.target>1.6</maven.compiler.target>
<slf4j.version>1.7.7</slf4j.version>
<cobertura.version>2.6</cobertura.version>
<checkstyle.version>2.11</checkstyle.version>
<findbugs.version>3.0.0</findbugs.version>
<javadoc.version>2.9.1</javadoc.version>
<pmd.version>3.0.1</pmd.version>
<jdepend.version>2.0-beta-2</jdepend.version>
<javancss.version>2.0</javancss.version>
<project.info.version>2.4</project.info.version>
<jxr.version>2.4</jxr.version>
<taglist.version>2.4</taglist.version>
<m3.site.version>3.3</m3.site.version>
<changelog.version>2.2</changelog.version>
<coverage.reports.dir>${project.build.directory}/target/coverage-reports</coverage.reports.dir>
<rxjava.version>0.20.4</rxjava.version>
</properties>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<ciManagement>
<system>CloudBees</system>
<url>https://xuml-tools.ci.cloudbees.com</url>
</ciManagement>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/davidmoten/rtree/issues</url>
</issueManagement>
<inceptionYear>2013</inceptionYear>
<developers>
<developer>
<id>dave</id>
<name>Dave Moten</name>
<url>https://github.com/davidmoten/</url>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
<timezone>+10</timezone>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:davidmoten/rtree.git</connection>
<developerConnection>scm:git:git@github.com:davidmoten/rtree.git</developerConnection>
<url>scm:git:git@github.com:davidmoten/rtree.git</url>
</scm>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>18.0</version>
</dependency>
<dependency>
<groupId>com.netflix.rxjava</groupId>
<artifactId>rxjava-core</artifactId>
<version>${rxjava.version}</version>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.netflix.rxjava</groupId>
<artifactId>rxjava-string</artifactId>
<version>${rxjava.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-core</artifactId>
<version>1.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-generator-annprocess</artifactId>
<version>1.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<id>benchmark</id>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.3.2</version>
<executions>
<execution>
<id>run-benchmarks</id>
<phase>integration-test</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<classpathScope>test</classpathScope>
<executable>java</executable>
<arguments>
<argument>-classpath</argument>
<classpath />
<argument>org.openjdk.jmh.Main</argument>
<!-- -h for help -->
<argument>-f</argument>
<argument>-i</argument>
<argument>10</argument>
<argument>-wi</argument>
<argument>3</argument>
<argument>-jvmArgs</argument>
<argument>-Xmx512m</argument>
</arguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>gallery</id>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.3.2</version>
<executions>
<execution>
<phase>integration-test</phase>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<classpathScope>test</classpathScope>
<mainClass>com.github.davidmoten.rtree.GalleryMain</mainClass>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>${maven.compiler.target}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<version>${m3.site.version}</version>
<executions>
<execution>
<id>attach-descriptor</id>
<goals>
<goal>attach-descriptor</goal>
</goals>
</execution>
</executions>
<configuration>
<reportPlugins>
<!-- this one should go first so that it is available to other plugins
when they run -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>${jxr.version}</version>
<configuration>
<aggregate>true</aggregate>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>${cobertura.version}</version>
<configuration>
<aggregate>false</aggregate>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>${checkstyle.version}</version>
<configuration>
<includeTestSourceDirectory>true</includeTestSourceDirectory>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>${pmd.version}</version>
<configuration>
<targetJdk>${maven.compiler.target}</targetJdk>
<aggregate>true</aggregate>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>${findbugs.version}</version>
<configuration>
<xmlOutput>true</xmlOutput>
<effort>Max</effort>
<!--<excludeFilterFile>findbugs-exclude-filter-amsa.xml</excludeFilterFile> -->
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jdepend-maven-plugin</artifactId>
<version>${jdepend.version}</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>javancss-maven-plugin</artifactId>
<version>${javancss.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>${project.info.version}</version>
<configuration>
<dependencyDetailsEnabled>false</dependencyDetailsEnabled>
<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
<version>${taglist.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${javadoc.version}</version>
<configuration>
<aggregate>true</aggregate>
</configuration>
</plugin>
<!-- commented this plugin out because cannot run offline (e.g. at
home) -->
<!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changelog-plugin</artifactId>
<version>${changelog.version}</version> <configuration> <username>${svn.username}</username>
<password>${svn.password}</password> </configuration> </plugin> -->
</reportPlugins>
</configuration>
</plugin>
</plugins>
</build>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
com.github.davidmoten.rx.operators.OperatorBoundedPriorityQueue.class
com.github.davidmoten.rx.operators.OperatorBoundedPriorityQueue$Wrapper.class
com.github.davidmoten.rx.operators.OperatorBoundedPriorityQueue$1.class
com.github.davidmoten.rtree.Util.class
com.github.davidmoten.rtree.SelectorRStar.class
com.github.davidmoten.rtree.Visualizer.class
com.github.davidmoten.rtree.RectangleDepth.class
com.github.davidmoten.rtree.SelectorMinimalOverlap.class
com.github.davidmoten.rtree.RTree$6.class
com.github.davidmoten.rtree.Backpressure.class
com.github.davidmoten.rtree.RTree$4.class
com.github.davidmoten.rtree.SplitterRStar$5.class
com.github.davidmoten.rtree.Functions$1.class
com.github.davidmoten.rtree.Node.class
com.github.davidmoten.rtree.SplitterRStar.class
com.github.davidmoten.rtree.geometry.Group.class
com.github.davidmoten.rtree.geometry.HasGeometry.class
com.github.davidmoten.rtree.geometry.Geometry.class
com.github.davidmoten.rtree.geometry.Geometries.class
com.github.davidmoten.rtree.geometry.Circle.class
com.github.davidmoten.rtree.geometry.Point.class
com.github.davidmoten.rtree.geometry.Rectangle.class
com.github.davidmoten.rtree.geometry.ListPair.class
com.github.davidmoten.rtree.Comparators$4.class
com.github.davidmoten.rtree.Functions.class
com.github.davidmoten.rtree.RTree$Builder.class
com.github.davidmoten.rtree.NodePosition.class
com.github.davidmoten.rtree.RTree$2.class
com.github.davidmoten.rtree.SplitterRStar$4.class
com.github.davidmoten.rtree.RTree$7.class
com.github.davidmoten.rtree.NonLeaf.class
com.github.davidmoten.rtree.RTree$1.class
com.github.davidmoten.rtree.SplitterRStar$SortType.class
com.github.davidmoten.rtree.SplitterRStar$3.class
com.github.davidmoten.rtree.Splitter.class
com.github.davidmoten.rtree.Selector.class
com.github.davidmoten.rtree.OnSubscribeSearch.class
com.github.davidmoten.rtree.SplitterRStar$2.class
com.github.davidmoten.rtree.Entry.class
com.github.davidmoten.rtree.Comparators.class
com.github.davidmoten.rtree.Visualizer$1.class
com.github.davidmoten.rtree.RTree.class
com.github.davidmoten.rtree.SelectorMinimalAreaIncrease.class
com.github.davidmoten.rtree.Comparators$1.class
com.github.davidmoten.rtree.OnSubscribeSearch$SearchProducer.class
com.github.davidmoten.rtree.Functions$3.class
com.github.davidmoten.rtree.RTree$5.class
com.github.davidmoten.rtree.Comparators$3.class
com.github.davidmoten.rtree.RTree$3.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
| 依赖Jar: |
guava-18.0.jar
/com.google.guava/guava/18.0
查看guava所有版本文件
rxjava-core-${rxjava.version}.jar
/com.netflix.rxjava/rxjava-core/${rxjava.version}
查看rxjava-core所有版本文件
junit-4.11.jar
/junit/junit/4.11
查看junit所有版本文件
rxjava-string-${rxjava.version}.jar
/com.netflix.rxjava/rxjava-string/${rxjava.version}
查看rxjava-string所有版本文件
jmh-core-1.0.jar
/org.openjdk.jmh/jmh-core/1.0
查看jmh-core所有版本文件
jmh-generator-annprocess-1.0.jar
/org.openjdk.jmh/jmh-generator-annprocess/1.0
查看jmh-generator-annprocess所有版本文件
|