|
|
@ -4,9 +4,22 @@ |
|
|
|
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> |
|
|
|
|
|
|
|
<groupId>seaweedfs</groupId> |
|
|
|
<groupId>com.github.chrislusf</groupId> |
|
|
|
<artifactId>seaweedfs-hadoop-client</artifactId> |
|
|
|
<version>1.0-SNAPSHOT</version> |
|
|
|
<version>1.0</version> |
|
|
|
|
|
|
|
<parent> |
|
|
|
<groupId>org.sonatype.oss</groupId> |
|
|
|
<artifactId>oss-parent</artifactId> |
|
|
|
<version>9</version> |
|
|
|
</parent> |
|
|
|
|
|
|
|
<distributionManagement> |
|
|
|
<snapshotRepository> |
|
|
|
<id>ossrh</id> |
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url> |
|
|
|
</snapshotRepository> |
|
|
|
</distributionManagement> |
|
|
|
<build> |
|
|
|
<plugins> |
|
|
|
<plugin> |
|
|
@ -46,6 +59,57 @@ |
|
|
|
</execution> |
|
|
|
</executions> |
|
|
|
</plugin> |
|
|
|
<plugin> |
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
<artifactId>maven-gpg-plugin</artifactId> |
|
|
|
<version>1.5</version> |
|
|
|
<executions> |
|
|
|
<execution> |
|
|
|
<id>sign-artifacts</id> |
|
|
|
<phase>verify</phase> |
|
|
|
<goals> |
|
|
|
<goal>sign</goal> |
|
|
|
</goals> |
|
|
|
</execution> |
|
|
|
</executions> |
|
|
|
</plugin> |
|
|
|
<plugin> |
|
|
|
<groupId>org.sonatype.plugins</groupId> |
|
|
|
<artifactId>nexus-staging-maven-plugin</artifactId> |
|
|
|
<version>1.6.7</version> |
|
|
|
<extensions>true</extensions> |
|
|
|
<configuration> |
|
|
|
<serverId>ossrh</serverId> |
|
|
|
<nexusUrl>https://oss.sonatype.org/</nexusUrl> |
|
|
|
<autoReleaseAfterClose>true</autoReleaseAfterClose> |
|
|
|
</configuration> |
|
|
|
</plugin> |
|
|
|
<plugin> |
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
<artifactId>maven-source-plugin</artifactId> |
|
|
|
<version>2.2.1</version> |
|
|
|
<executions> |
|
|
|
<execution> |
|
|
|
<id>attach-sources</id> |
|
|
|
<goals> |
|
|
|
<goal>jar-no-fork</goal> |
|
|
|
</goals> |
|
|
|
</execution> |
|
|
|
</executions> |
|
|
|
</plugin> |
|
|
|
<plugin> |
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
<artifactId>maven-javadoc-plugin</artifactId> |
|
|
|
<version>2.9.1</version> |
|
|
|
<executions> |
|
|
|
<execution> |
|
|
|
<id>attach-javadocs</id> |
|
|
|
<goals> |
|
|
|
<goal>jar</goal> |
|
|
|
</goals> |
|
|
|
</execution> |
|
|
|
</executions> |
|
|
|
</plugin> |
|
|
|
</plugins> |
|
|
|
</build> |
|
|
|
|
|
|
@ -60,9 +124,9 @@ |
|
|
|
<version>${hadoop.version}</version> |
|
|
|
</dependency> |
|
|
|
<dependency> |
|
|
|
<groupId>seaweedfs</groupId> |
|
|
|
<groupId>com.github.chrislusf</groupId> |
|
|
|
<artifactId>seaweedfs-client</artifactId> |
|
|
|
<version>1.0-SNAPSHOT</version> |
|
|
|
<version>1.0</version> |
|
|
|
</dependency> |
|
|
|
<dependency> |
|
|
|
<groupId>org.apache.hadoop</groupId> |
|
|
|