mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-03-19 13:02:13 +01:00
java: fixed pom.xml to work "mvn deploy" command
This commit is contained in:
parent
dbe760d6e2
commit
8ce23f8e3e
79
java/pom.xml
79
java/pom.xml
@ -3,10 +3,12 @@
|
|||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>org.msgpack</groupId>
|
<groupId>org.msgpack</groupId>
|
||||||
<artifactId>msgpack</artifactId>
|
<artifactId>msgpack</artifactId>
|
||||||
<name>MessagePack for Java</name>
|
<version>0.2</version>
|
||||||
<version>1.0-SNAPSHOT</version>
|
|
||||||
<description>MessagePack for Java</description>
|
<description>MessagePack for Java</description>
|
||||||
|
|
||||||
|
<name>MessagePack for Java</name>
|
||||||
|
<url>http://msgpack.sourceforge.net/</url>
|
||||||
|
|
||||||
<licenses>
|
<licenses>
|
||||||
<license>
|
<license>
|
||||||
<name>The Apache Software License, Version 2.0</name>
|
<name>The Apache Software License, Version 2.0</name>
|
||||||
@ -16,9 +18,19 @@
|
|||||||
</licenses>
|
</licenses>
|
||||||
|
|
||||||
<scm>
|
<scm>
|
||||||
<connection>scm:git://github.com/msgpack/msgpack.git</connection>
|
<connection>scm:git:git://github.com/msgpack/msgpack.git</connection>
|
||||||
|
<url>scm:git:git://github.com/msgpack/msgpack.git</url>
|
||||||
</scm>
|
</scm>
|
||||||
|
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>junit</groupId>
|
||||||
|
<artifactId>junit</artifactId>
|
||||||
|
<version>4.8.1</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<resources>
|
<resources>
|
||||||
<resource>
|
<resource>
|
||||||
@ -83,27 +95,50 @@
|
|||||||
</plugins>
|
</plugins>
|
||||||
</reporting>
|
</reporting>
|
||||||
|
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>msgpack.sourceforge.net</id>
|
||||||
|
<name>MessagePack Maven2 Repository</name>
|
||||||
|
<url>http://msgpack.sourceforge.net/maven2</url>
|
||||||
|
</repository>
|
||||||
|
<repository>
|
||||||
|
<id>msgpack.sourceforge.net</id>
|
||||||
|
<name>MessagePack Maven2 Snapshot Repository</name>
|
||||||
|
<url>http://msgpack.sourceforge.net/maven2-snapshot</url>
|
||||||
|
</repository>
|
||||||
|
</repositories>
|
||||||
|
|
||||||
|
<distributionManagement>
|
||||||
|
<repository>
|
||||||
|
<uniqueVersion>false</uniqueVersion>
|
||||||
|
<id>shell.sourceforge.net</id>
|
||||||
|
<name>Repository at sourceforge.net</name>
|
||||||
|
<url>scp://shell.sourceforge.net/home/groups/m/ms/msgpack/htdocs/maven2/</url>
|
||||||
|
</repository>
|
||||||
|
<snapshotRepository>
|
||||||
|
<uniqueVersion>true</uniqueVersion>
|
||||||
|
<id>shell.sourceforge.net</id>
|
||||||
|
<name>Repository Name</name>
|
||||||
|
<url>scp://shell.sourceforge.net/home/groups/m/ms/msgpack/htdocs/maven2-snapshot/</url>
|
||||||
|
</snapshotRepository>
|
||||||
|
</distributionManagement>
|
||||||
|
|
||||||
<profiles>
|
<profiles>
|
||||||
<!-- for sending artifacts to sourceforge.net repository -->
|
|
||||||
<profile>
|
<profile>
|
||||||
<id>sourceforge</id>
|
<id>release</id>
|
||||||
<distributionManagement>
|
<build>
|
||||||
<repository>
|
<plugins>
|
||||||
<id>sourceforge.net</id>
|
<plugin>
|
||||||
<name>Repository at sourceforge.net</name>
|
<inherited>true</inherited>
|
||||||
<url>scpexe://shell.sourceforge.net/home/groups/m/ms/msgpack/htdocs/maven2/</url>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
</repository>
|
<artifactId>maven-deploy-plugin</artifactId>
|
||||||
</distributionManagement>
|
<version>2.4</version>
|
||||||
|
<configuration>
|
||||||
|
<updateReleaseInfo>true</updateReleaseInfo>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
</profile>
|
</profile>
|
||||||
</profiles>
|
</profiles>
|
||||||
|
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>junit</groupId>
|
|
||||||
<artifactId>junit</artifactId>
|
|
||||||
<version>4.8.1</version>
|
|
||||||
<scope>test</scope>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
</dependencies>
|
|
||||||
</project>
|
</project>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user