diff --git a/README.md b/README.md index 055f1a7..1adf0ef 100644 --- a/README.md +++ b/README.md @@ -18,11 +18,11 @@ import com.dengxq.lnglat2Geo.GeoTrans 里面的所有方法均为公有接口 接口文档,参考博客: https://blog.csdn.net/deng0515001/article/details/99606156 jar包maven依赖: - +` com.github.deng0515001 lnglat2Geo 1.0.2 - + ` 如果无法下载,可以修改仓库:https://oss.sonatype.org/service/local/repositories/releases/content diff --git a/lnglat2Geo-1.0.0.jar b/lnglat2Geo-1.0.0.jar deleted file mode 100644 index 71478ea..0000000 Binary files a/lnglat2Geo-1.0.0.jar and /dev/null differ diff --git a/pom.xml b/pom.xml index ec56f30..b4ef0e0 100644 --- a/pom.xml +++ b/pom.xml @@ -11,10 +11,13 @@ 3.2.11 1.6.2 - com.dengxq + com.github.deng0515001 lnglat2Geo - 1.0.0 + 1.0.2 jar + lnglat2Geo + lnglat to Geo + https://github.com/deng0515001/lnglat2Geo @@ -64,6 +67,37 @@ + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + https://github.com/deng0515001/lnglat2Geo + https://github.com/deng0515001/lnglat2Geo.git + https://github.com/deng0515001/lnglat2Geo + + + + deng0515001 + 451408963@qq.com + https://github.com/deng0515001/lnglat2Geo + + + + + + sonatype-nexus-staging + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + sonatype-nexus-staging + https://oss.sonatype.org/content/repositories/snapshots/ + + @@ -109,6 +143,22 @@ + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + signArtifact + verify + + sign + + + + + maven-source-plugin @@ -126,6 +176,23 @@ + + org.apache.maven.plugins + maven-javadoc-plugin + 3.1.1 + + true + + + + attach-javadocs + + jar + + + + + diff --git a/src/main/java/com/dengxq/lnglat2Geo/test/Test.java b/src/main/java/com/dengxq/lnglat2Geo/test/Test.java new file mode 100644 index 0000000..ec52045 --- /dev/null +++ b/src/main/java/com/dengxq/lnglat2Geo/test/Test.java @@ -0,0 +1,14 @@ +package com.dengxq.lnglat2Geo.test; + +public class Test { + + /** + * test + * @param a a + * @param b b + * @return int + */ + static int test(int a, int b){ + return a+b; + } +}