Skip to content

Commit 7c67c40

Browse files
committed
Release version 0.2.6
1 parent c1a0aec commit 7c67c40

File tree

4 files changed

+23
-27
lines changed

4 files changed

+23
-27
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ To add the project you your Maven project, add the dependency:
3333
<dependency>
3434
<groupId>com.softlayer.api</groupId>
3535
<artifactId>softlayer-api-client</artifactId>
36-
<version>0.2.5</version>
36+
<version>0.2.6</version>
3737
</dependency>
3838
```
3939

examples/pom.xml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>softlayer-api-client-examples</artifactId>
66
<packaging>jar</packaging>
77
<!-- Please keep version in sync with README -->
8-
<version>0.2.5</version>
8+
<version>0.2.6</version>
99
<name>softlayer-api-client-examples</name>
1010
<url>http://sldn.softlayer.com</url>
1111
<licenses>
@@ -28,18 +28,15 @@
2828
</dependencies>
2929
<build>
3030
<plugins>
31-
<!--
32-
Manually upgrade resources plugin to 2.6 because of https://jira.codehaus.org/browse/MRESOURCES-140
33-
-->
3431
<plugin>
3532
<groupId>org.apache.maven.plugins</groupId>
3633
<artifactId>maven-resources-plugin</artifactId>
37-
<version>2.6</version>
34+
<version>3.1.0</version>
3835
</plugin>
3936
<plugin>
4037
<groupId>org.codehaus.mojo</groupId>
4138
<artifactId>exec-maven-plugin</artifactId>
42-
<version>1.2.1</version>
39+
<version>1.6.0</version>
4340
<executions>
4441
<execution>
4542
<goals>
@@ -54,7 +51,7 @@
5451
<plugin>
5552
<groupId>org.apache.maven.plugins</groupId>
5653
<artifactId>maven-compiler-plugin</artifactId>
57-
<version>3.7.0</version>
54+
<version>3.8.0</version>
5855
<configuration>
5956
<source>${java.version}</source>
6057
<target>${java.version}</target>

gen/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>softlayer-api-client-gen</artifactId>
66
<packaging>jar</packaging>
77
<!-- Please keep version in sync with README -->
8-
<version>0.2.5</version>
8+
<version>0.2.6</version>
99
<name>softlayer-api-client-gen</name>
1010
<url>http://sldn.softlayer.com</url>
1111
<licenses>
@@ -29,12 +29,12 @@
2929
<dependency>
3030
<groupId>com.google.code.gson</groupId>
3131
<artifactId>gson</artifactId>
32-
<version>2.3</version>
32+
<version>2.8.5</version>
3333
</dependency>
3434
<dependency>
3535
<groupId>junit</groupId>
3636
<artifactId>junit</artifactId>
37-
<version>4.11</version>
37+
<version>4.12</version>
3838
<scope>test</scope>
3939
</dependency>
4040
</dependencies>
@@ -43,7 +43,7 @@
4343
<plugin>
4444
<groupId>org.codehaus.mojo</groupId>
4545
<artifactId>exec-maven-plugin</artifactId>
46-
<version>1.2.1</version>
46+
<version>1.6.0</version>
4747
<executions>
4848
<execution>
4949
<goals>
@@ -58,12 +58,12 @@
5858
<plugin>
5959
<groupId>org.apache.maven.plugins</groupId>
6060
<artifactId>maven-javadoc-plugin</artifactId>
61-
<version>3.0.0-M1</version>
61+
<version>3.0.1</version>
6262
</plugin>
6363
<plugin>
6464
<groupId>org.apache.maven.plugins</groupId>
6565
<artifactId>maven-compiler-plugin</artifactId>
66-
<version>3.7.0</version>
66+
<version>3.8.0</version>
6767
<configuration>
6868
<source>${java.version}</source>
6969
<target>${java.version}</target>

pom.xml

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<artifactId>softlayer-api-client</artifactId>
55
<packaging>jar</packaging>
66
<!-- Please keep version in sync with README -->
7-
<version>0.2.5</version>
7+
<version>0.2.6</version>
88
<name>SoftLayer API Client for Java</name>
99
<description>API client for accessing the SoftLayer API</description>
1010
<url>http://sldn.softlayer.com</url>
@@ -41,7 +41,7 @@
4141
<connection>scm:git:[email protected]:softlayer/softlayer-java.git</connection>
4242
<developerConnection>scm:git:[email protected]:softlayer/softlayer-java.git</developerConnection>
4343
<url>[email protected]:softlayer/softlayer-java.git</url>
44-
<tag>0.2.5</tag>
44+
<tag>0.2.6</tag>
4545
</scm>
4646
<properties>
4747
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -67,7 +67,7 @@
6767
<dependency>
6868
<groupId>com.google.code.gson</groupId>
6969
<artifactId>gson</artifactId>
70-
<version>2.6</version>
70+
<version>2.8.5</version>
7171
</dependency>
7272
<dependency>
7373
<groupId>junit</groupId>
@@ -78,7 +78,7 @@
7878
<dependency>
7979
<groupId>org.mockito</groupId>
8080
<artifactId>mockito-core</artifactId>
81-
<version>2.8.47</version>
81+
<version>2.23.4</version>
8282
<scope>test</scope>
8383
</dependency>
8484
</dependencies>
@@ -87,7 +87,7 @@
8787
<plugin>
8888
<groupId>org.apache.maven.plugins</groupId>
8989
<artifactId>maven-compiler-plugin</artifactId>
90-
<version>3.7.0</version>
90+
<version>3.8.0</version>
9191
<configuration>
9292
<source>${java.version}</source>
9393
<target>${java.version}</target>
@@ -109,18 +109,18 @@
109109
<plugin>
110110
<groupId>org.apache.maven.plugins</groupId>
111111
<artifactId>maven-javadoc-plugin</artifactId>
112-
<version>3.0.0-M1</version>
112+
<version>3.0.1</version>
113+
<configuration>
114+
<!-- SLDN documentation contains HTML, but it isn't well formatted. -->
115+
<!-- Java 8 will error if we don't skip doclint here -->
116+
<doclint>none</doclint>
117+
</configuration>
113118
<executions>
114119
<execution>
115120
<id>attach-javadocs</id>
116121
<goals>
117122
<goal>jar</goal>
118123
</goals>
119-
<configuration>
120-
<!-- SLDN documentation contains HTML, but it isn't well formatted. -->
121-
<!-- Java 8 will error if we don't skip doclint here -->
122-
<additionalparam>-Xdoclint:none</additionalparam>
123-
</configuration>
124124
</execution>
125125
</executions>
126126
</plugin>
@@ -141,8 +141,7 @@
141141
<!-- Generate services -->
142142
<plugin>
143143
<artifactId>maven-invoker-plugin</artifactId>
144-
<!-- https://issues.apache.org/jira/browse/MINVOKER-224 prevents an upgrade to 3.0.1 -->
145-
<version>2.0.0</version>
144+
<version>3.1.0</version>
146145
<executions>
147146
<execution>
148147
<id>generate-services</id>

0 commit comments

Comments
 (0)