Skip to content

Commit e928358

Browse files
committed
Preparing the release 1.1.0
1 parent 1e33086 commit e928358

1 file changed

Lines changed: 36 additions & 3 deletions

File tree

pom.xml

Lines changed: 36 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>com.ibm.g11n.pipeline</groupId>
44
<artifactId>gp-java-client</artifactId>
5-
<version>1.1.1-SNAPSHOT</version>
5+
<version>1.1.0</version>
66
<name>Java client SDK for Globalization Pipeline on IBM Bluemix</name>
77
<description>
88
Java client SDK for Globalization Pipeline on IBM Bluemix
@@ -31,14 +31,18 @@
3131
<connection>scm:git:git@github.com:IBM-Bluemix/gp-java-client.git</connection>
3232
<developerConnection>scm:git:git@github.com:IBM-Bluemix/gp-java-client.git</developerConnection>
3333
<url>git@github.com:IBM-Bluemix/gp-java-client.git</url>
34-
<tag>HEAD</tag>
34+
<tag>gp-java-client-1.1.0</tag>
3535
</scm>
3636

3737
<distributionManagement>
3838
<snapshotRepository>
3939
<id>ossrh</id>
4040
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
4141
</snapshotRepository>
42+
<repository>
43+
<id>ossrh</id>
44+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
45+
</repository>
4246
</distributionManagement>
4347

4448
<properties>
@@ -106,6 +110,20 @@
106110
</executions>
107111
</plugin>
108112

113+
<plugin>
114+
<groupId>org.apache.maven.plugins</groupId>
115+
<artifactId>maven-source-plugin</artifactId>
116+
<version>3.0.1</version>
117+
<executions>
118+
<execution>
119+
<id>attach-sources</id>
120+
<goals>
121+
<goal>jar-no-fork</goal>
122+
</goals>
123+
</execution>
124+
</executions>
125+
</plugin>
126+
109127
<plugin>
110128
<groupId>org.apache.maven.plugins</groupId>
111129
<artifactId>maven-javadoc-plugin</artifactId>
@@ -120,10 +138,25 @@
120138
</executions>
121139
</plugin>
122140

141+
<plugin>
142+
<groupId>org.apache.maven.plugins</groupId>
143+
<artifactId>maven-gpg-plugin</artifactId>
144+
<version>1.6</version>
145+
<executions>
146+
<execution>
147+
<id>sign-artifacts</id>
148+
<phase>verify</phase>
149+
<goals>
150+
<goal>sign</goal>
151+
</goals>
152+
</execution>
153+
</executions>
154+
</plugin>
155+
123156
<plugin>
124157
<groupId>org.sonatype.plugins</groupId>
125158
<artifactId>nexus-staging-maven-plugin</artifactId>
126-
<version>1.6.3</version>
159+
<version>1.6.7</version>
127160
<extensions>true</extensions>
128161
<configuration>
129162
<serverId>ossrh</serverId>

0 commit comments

Comments
 (0)