Skip to content

Commit 3158544

Browse files
release 0.1.3-SNAPSHOT
1 parent dee6ea3 commit 3158544

File tree

3 files changed

+9
-31
lines changed

3 files changed

+9
-31
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ sourceCompatibility = 1.6
66
targetCompatibility = 1.6
77
group = 'com.ibm.watson.developercloud'
88
archivesBaseName = 'watson-developer-cloud'
9-
version = '0.1.1'
9+
version = '0.1.3'
1010

1111
description = 'Watson Developer Cloud Java Wrapper'
1212

pom.xml

Lines changed: 7 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>com.ibm.watson.developer_cloud</groupId>
6-
<version>0.1.1-SNAPSHOT</version>
6+
<version>0.1.3-SNAPSHOT</version>
77
<packaging>jar</packaging>
88
<name>Watson Developer Cloud Java Wrapper</name>
99
<description>Watson Developer Cloud Java Wrapper</description>
@@ -95,6 +95,7 @@
9595
<serverId>nexus-releases</serverId>
9696
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
9797
<autoReleaseAfterClose>true</autoReleaseAfterClose>
98+
<stagingProfileId>127ae59093cb28</stagingProfileId>
9899
</configuration>
99100
</plugin>
100101
<plugin>
@@ -157,9 +158,13 @@
157158
</configuration>
158159
</plugin>
159160
<plugin>
161+
<groupId>org.apache.maven.plugins</groupId>
160162
<artifactId>maven-release-plugin</artifactId>
161-
<version>2.1</version>
163+
<version>2.5</version>
162164
<configuration>
165+
<autoVersionSubmodules>true</autoVersionSubmodules>
166+
<useReleaseProfile>false</useReleaseProfile>
167+
<releaseProfiles>release</releaseProfiles>
163168
<goals>deploy</goals>
164169
</configuration>
165170
</plugin>
@@ -175,33 +180,6 @@
175180
<javadoc.doclint.none>-Xdoclint:none</javadoc.doclint.none>
176181
</properties>
177182
</profile>
178-
<profile>
179-
<id>release-sign-artifacts</id>
180-
<activation>
181-
<property>
182-
<name>performRelease</name>
183-
<value>true</value>
184-
</property>
185-
</activation>
186-
<build>
187-
<plugins>
188-
<plugin>
189-
<groupId>org.apache.maven.plugins</groupId>
190-
<artifactId>maven-gpg-plugin</artifactId>
191-
<version>1.6</version>
192-
<executions>
193-
<execution>
194-
<id>sign-artifacts</id>
195-
<phase>verify</phase>
196-
<goals>
197-
<goal>sign</goal>
198-
</goals>
199-
</execution>
200-
</executions>
201-
</plugin>
202-
</plugins>
203-
</build>
204-
</profile>
205183
</profiles>
206184
<artifactId>java-wrapper</artifactId>
207185
<issueManagement>

src/main/java/com/ibm/watson/developer_cloud/service/WatsonService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ public HttpClient getHttpClient() {
314314
* @return the user agent
315315
*/
316316
private final String getUserAgent() {
317-
return "watson-developer-cloud-java-wrapper-0.1.1";
317+
return "watson-developer-cloud-java-wrapper-0.1.3";
318318
}
319319

320320
/**

0 commit comments

Comments
 (0)