162 lines
5.4 KiB
XML
162 lines
5.4 KiB
XML
<?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>
|
||
<properties>
|
||
<slf4j.log4j12.version>1.6.2</slf4j.log4j12.version>
|
||
</properties>
|
||
<groupId>com.github.deng0515001</groupId>
|
||
<artifactId>lnglat2Geo</artifactId>
|
||
<version>1.0.5</version>
|
||
<packaging>jar</packaging>
|
||
<name>lnglat2Geo</name>
|
||
<description>lnglat to Geo</description>
|
||
<url>https://github.com/deng0515001/lnglat2Geo</url>
|
||
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>io.sgr</groupId>
|
||
<artifactId>s2-geometry-library-java</artifactId>
|
||
<version>1.0.0</version>
|
||
</dependency>
|
||
<!-- 移植scala代码,tuple暂时用它来替代 -->
|
||
<dependency>
|
||
<groupId>com.speedment.common</groupId>
|
||
<artifactId>tuple</artifactId>
|
||
<version>3.2.10</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.commons</groupId>
|
||
<artifactId>commons-lang3</artifactId>
|
||
<version>3.9</version>
|
||
</dependency>
|
||
|
||
|
||
<dependency>
|
||
<groupId>org.projectlombok</groupId>
|
||
<artifactId>lombok</artifactId>
|
||
<version>1.18.22</version>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.alibaba</groupId>
|
||
<artifactId>fastjson</artifactId>
|
||
<version>1.2.79</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.commons</groupId>
|
||
<artifactId>commons-io</artifactId>
|
||
<version>1.3.2</version>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
<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>
|
||
</license>
|
||
</licenses>
|
||
|
||
<scm>
|
||
<url>https://github.com/deng0515001/lnglat2Geo</url>
|
||
<connection>https://github.com/deng0515001/lnglat2Geo.git</connection>
|
||
<developerConnection>https://github.com/deng0515001/lnglat2Geo</developerConnection>
|
||
</scm>
|
||
<developers>
|
||
<developer>
|
||
<name>deng0515001</name>
|
||
<email>451408963@qq.com</email>
|
||
<url>https://github.com/deng0515001/lnglat2Geo</url>
|
||
</developer>
|
||
</developers>
|
||
|
||
<distributionManagement>
|
||
<repository>
|
||
<id>sonatype-nexus-staging</id>
|
||
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
||
</repository>
|
||
<snapshotRepository>
|
||
<id>sonatype-nexus-staging</id>
|
||
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
||
</snapshotRepository>
|
||
</distributionManagement>
|
||
|
||
<build>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-compiler-plugin</artifactId>
|
||
<version>3.1</version>
|
||
<configuration>
|
||
<source>1.8</source>
|
||
<target>1.8</target>
|
||
</configuration>
|
||
</plugin>
|
||
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-surefire-plugin</artifactId>
|
||
<version>2.7</version>
|
||
<configuration>
|
||
<skipTests>true</skipTests>
|
||
</configuration>
|
||
</plugin>
|
||
|
||
<!-- 签名插件 -->
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-gpg-plugin</artifactId>
|
||
<version>1.6</version>
|
||
<executions>
|
||
<execution>
|
||
<id>signArtifact</id>
|
||
<phase>verify</phase>
|
||
<goals>
|
||
<goal>sign</goal>
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
|
||
<!-- 要将源码放上去,需要加入这个插件 -->
|
||
<plugin>
|
||
<artifactId>maven-source-plugin</artifactId>
|
||
<version>2.1</version>
|
||
<configuration>
|
||
<attach>true</attach>
|
||
</configuration>
|
||
<executions>
|
||
<execution>
|
||
<phase>compile</phase>
|
||
<goals>
|
||
<goal>jar</goal>
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-javadoc-plugin</artifactId>
|
||
<version>3.1.1</version>
|
||
<!--<configuration>-->
|
||
<!--<aggregate>true</aggregate>-->
|
||
<!--</configuration>-->
|
||
<executions>
|
||
<execution>
|
||
<id>attach-javadocs</id>
|
||
<goals>
|
||
<goal>jar</goal>
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
|
||
</plugins>
|
||
|
||
|
||
</build>
|
||
</project> |