rtree2
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.davidmoten</groupId> <artifactId>rtree2</artifactId> <version>0.9.3</version> </dependency>
<?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>com.github.davidmoten</groupId> <artifactId>sonatype-parent</artifactId> <version>0.1</version> </parent> <artifactId>rtree2</artifactId> <version>0.9.3</version> <name>${project.artifactId}</name> <description>Java implementation of an immutable in-memory R-Tree for spatial indexing</description> <packaging>bundle</packaging> <url>http://github.com/davidmoten/rtree2</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <maven.compiler.target>1.8</maven.compiler.target> <scm.url>scm:git:https://github.com/davidmoten/rtree2.git</scm.url> <slf4j.version>1.7.12</slf4j.version> <compiler.version>3.10.1</compiler.version> <checkstyle.version>3.1.2</checkstyle.version> <findbugs.version>3.0.5</findbugs.version> <javadoc.version>3.4.0</javadoc.version> <pmd.version>3.16.0</pmd.version> <project.info.version>3.1.1</project.info.version> <jxr.version>3.2.0</jxr.version> <taglist.version>3.0.0</taglist.version> <m3.site.version>3.12.0</m3.site.version> <changelog.version>2.2</changelog.version> <coverage.reports.dir>${project.build.directory}/target/coverage-reports</coverage.reports.dir> <jmh.version>1.35</jmh.version> <exec.version>3.0.0</exec.version> <bundle.plugin.version>5.1.6</bundle.plugin.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>Travis</system> <url>https://travis-ci.org/davidmoten/rtree2</url> </ciManagement> <issueManagement> <system>GitHub</system> <url>https://github.com/davidmoten/rtree2/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.url}</connection> <developerConnection>${scm.url}</developerConnection> <url>${scm.url}</url> <tag>0.9.3</tag> </scm> <dependencies> <dependency> <groupId>com.github.davidmoten</groupId> <artifactId>guava-mini</artifactId> <version>0.1.4</version> </dependency> <!-- Test Dependencies --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> <dependency> <groupId>com.github.davidmoten</groupId> <artifactId>grumpy-core</artifactId> <version>0.4.5</version> <scope>test</scope> </dependency> <dependency> <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-core</artifactId> <version>${jmh.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-generator-annprocess</artifactId> <version>${jmh.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>4.5.1</version> <scope>test</scope> </dependency> <dependency> <groupId>com.github.davidmoten</groupId> <artifactId>junit-extras</artifactId> <version>0.4</version> <scope>test</scope> </dependency> <dependency> <groupId>javax.annotation</groupId> <artifactId>javax.annotation-api</artifactId> <version>1.3.2</version> <optional>true</optional> </dependency> <dependency> <groupId>com.github.davidmoten</groupId> <artifactId>kool</artifactId> <version>0.1.20</version> <scope>test</scope> </dependency> <dependency> <groupId>io.reactivex</groupId> <artifactId>rxjava</artifactId> <version>1.3.8</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>${exec.version}</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>-w</argument> <argument>2</argument> <argument>-r</argument> <argument>2</argument> <argument>-f</argument> <argument>1</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>main</id> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>${exec.version}</version> <executions> <execution> <id>run-main</id> <phase>integration-test</phase> <goals> <goal>java</goal> </goals> <configuration> <classpathScope>test</classpathScope> <mainClass>com.github.davidmoten.rtree2.BenchmarksRTree</mainClass> </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>${exec.version}</version> <executions> <execution> <phase>integration-test</phase> <goals> <goal>java</goal> </goals> </execution> </executions> <configuration> <classpathScope>test</classpathScope> <mainClass>com.github.davidmoten.rtree2.GalleryMain</mainClass> </configuration> </plugin> </plugins> </build> </profile> </profiles> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${compiler.version}</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> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>${bundle.plugin.version}</version> <extensions>true</extensions> <configuration> <obrRepository>NONE</obrRepository> </configuration> </plugin> <!-- <plugin> --> <!-- <groupId>org.codehaus.mojo</groupId> --> <!-- <artifactId>cobertura-maven-plugin</artifactId> --> <!-- <version>${cobertura.version}</version> --> <!-- <configuration> --> <!-- <aggregate>false</aggregate> --> <!-- <instrumentation> --> <!-- <excludes> --> <!-- <exclude>com/github/davidmoten/rtree/ImageSaver.class</exclude> --> <!-- <exclude>com/github/davidmoten/rtree/fbs/generated/*.class</exclude> --> <!-- <exclude>com/github/davidmoten/rtree/internal/util/PriorityQueue.class</exclude> --> <!-- </excludes> --> <!-- </instrumentation> --> <!-- </configuration> --> <!-- </plugin> --> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.8</version> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>test</phase> <goals> <goal>report</goal> </goals> <configuration> <excludes> <exclude>**/PriorityQueue.*</exclude> </excludes> </configuration> </execution> </executions> </plugin> </plugins> </build> <reporting> <excludeDefaults>true</excludeDefaults> <outputDirectory>${project.build.directory}/site</outputDirectory> <plugins> <!-- 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.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.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> --> </plugins> </reporting> </project>