组织ID: |
com.github.davidmoten |
项目ID: |
geo |
版本: |
0.7.5 |
最后修改时间: |
2018-08-01 17:04:12 |
包类型: |
jar |
标题: |
${project.artifactId} |
描述: |
Geohash encoding and decoding utilities including bounding box coverage. |
大小: |
19.61KB |
|
Maven引入代码: |
<dependency>
<groupId>com.github.davidmoten</groupId>
<artifactId>geo</artifactId>
<version>0.7.5</version>
</dependency>
|
Gradle引入代码: |
com.github.davidmoten:geo:0.7.5
|
下载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>com.github.davidmoten</groupId>
<artifactId>geo-parent</artifactId>
<version>0.7.5</version>
</parent>
<artifactId>geo</artifactId>
<name>${project.artifactId}</name>
<description>Geohash encoding and decoding utilities including bounding box coverage.</description>
<packaging>jar</packaging>
<properties>
<cobertura.version>2.6</cobertura.version>
<checkstyle.version>2.7</checkstyle.version>
<findbugs.version>2.3.2</findbugs.version>
<javadoc.version>2.10.3</javadoc.version>
<pmd.version>2.5</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.3</jxr.version>
<taglist.version>2.4</taglist.version>
<dashboard.version>1.0.0-beta-1</dashboard.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>
<maven.compiler.target>1.6</maven.compiler.target>
<jmh.version>1.11.1</jmh.version>
</properties>
<dependencies>
<!-- Test Dependencies -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>16.0.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.3.176</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.davidmoten</groupId>
<artifactId>grumpy-core</artifactId>
<version>0.2.2</version>
</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>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>${maven.compiler.target}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${javadoc.version}</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</execution>
</executions>
</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>
<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>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>
</profiles>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
com.github.davidmoten.geo.GeoHash$1.class
com.github.davidmoten.geo.CoverageLongs.class
com.github.davidmoten.geo.Parity.class
com.github.davidmoten.geo.Coverage.class
com.github.davidmoten.geo.GeoHash.class
com.github.davidmoten.geo.GeoHash$LongSet.class
com.github.davidmoten.geo.Direction.class
com.github.davidmoten.geo.LatLong.class
com.github.davidmoten.geo.util.Preconditions.class
com.github.davidmoten.geo.Base32.class
com.github.davidmoten.geo.GeoHash$HashHeights.class
com.github.davidmoten.geo.GeoHash$HashWidths.class
META-INF/maven/com.github.davidmoten/geo/pom.xml
META-INF/maven/com.github.davidmoten/geo/pom.properties
|
依赖Jar: |
guava-16.0.1.jar
/com.google.guava/guava/16.0.1
查看guava所有版本文件
junit-4.11.jar
/junit/junit/4.11
查看junit所有版本文件
h2-1.3.176.jar
/com.h2database/h2/1.3.176
查看h2所有版本文件
commons-io-2.4.jar
/commons-io/commons-io/2.4
查看commons-io所有版本文件
grumpy-core-0.2.2.jar
/com.github.davidmoten/grumpy-core/0.2.2
查看grumpy-core所有版本文件
jmh-core-${jmh.version}.jar
/org.openjdk.jmh/jmh-core/${jmh.version}
查看jmh-core所有版本文件
jmh-generator-annprocess-${jmh.version}.jar
/org.openjdk.jmh/jmh-generator-annprocess/${jmh.version}
查看jmh-generator-annprocess所有版本文件
|