组织ID: |
com.github.davidmoten |
项目ID: |
grumpy-core |
版本: |
0.2 |
最后修改时间: |
2019-10-25 01:21:23 |
包类型: |
jar |
标题: |
${project.artifactId} |
描述: |
OGC tools including WMS server |
大小: |
10.27KB |
|
Maven引入代码: |
<dependency>
<groupId>com.github.davidmoten</groupId>
<artifactId>grumpy-core</artifactId>
<version>0.2</version>
</dependency>
|
Gradle引入代码: |
com.github.davidmoten:grumpy-core:0.2
|
下载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>grumpy</artifactId>
<version>0.2</version>
</parent>
<artifactId>grumpy-core</artifactId>
<name>${project.artifactId}</name>
<description>OGC tools including WMS server</description>
<packaging>jar</packaging>
<url>http://github.com/davidmoten/grumpy</url>
<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math3</artifactId>
<version>3.2</version>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<artifactId>log4j</artifactId>
<groupId>log4j</groupId>
<version>1.2.17</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>${slf4j.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<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.grumpy.core.Position.class
com.github.davidmoten.grumpy.core.Position$LongitudePair.class
META-INF/maven/com.github.davidmoten/grumpy-core/pom.xml
META-INF/maven/com.github.davidmoten/grumpy-core/pom.properties
|
依赖Jar: |
commons-math3-3.2.jar
/org.apache.commons/commons-math3/3.2
查看commons-math3所有版本文件
junit-4.11.jar
/junit/junit/4.11
查看junit所有版本文件
log4j-1.2.17.jar
/log4j/log4j/1.2.17
查看log4j所有版本文件
slf4j-api-${slf4j.version}.jar
/org.slf4j/slf4j-api/${slf4j.version}
查看slf4j-api所有版本文件
slf4j-log4j12-${slf4j.version}.jar
/org.slf4j/slf4j-log4j12/${slf4j.version}
查看slf4j-log4j12所有版本文件
|