|
4 | 4 | <artifactId>softlayer-api-client</artifactId> |
5 | 5 | <packaging>jar</packaging> |
6 | 6 | <!-- Please keep version in sync with README --> |
7 | | - <version>0.2.5</version> |
| 7 | + <version>0.2.6</version> |
8 | 8 | <name>SoftLayer API Client for Java</name> |
9 | 9 | <description>API client for accessing the SoftLayer API</description> |
10 | 10 | <url>http://sldn.softlayer.com</url> |
|
41 | 41 | < connection>scm:git: [email protected]:softlayer/softlayer-java.git</ connection> |
42 | 42 | < developerConnection>scm:git: [email protected]:softlayer/softlayer-java.git</ developerConnection> |
43 | 43 | < url> [email protected]:softlayer/softlayer-java.git</ url> |
44 | | - <tag>0.2.5</tag> |
| 44 | + <tag>0.2.6</tag> |
45 | 45 | </scm> |
46 | 46 | <properties> |
47 | 47 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
67 | 67 | <dependency> |
68 | 68 | <groupId>com.google.code.gson</groupId> |
69 | 69 | <artifactId>gson</artifactId> |
70 | | - <version>2.6</version> |
| 70 | + <version>2.8.5</version> |
71 | 71 | </dependency> |
72 | 72 | <dependency> |
73 | 73 | <groupId>junit</groupId> |
|
78 | 78 | <dependency> |
79 | 79 | <groupId>org.mockito</groupId> |
80 | 80 | <artifactId>mockito-core</artifactId> |
81 | | - <version>2.8.47</version> |
| 81 | + <version>2.23.4</version> |
82 | 82 | <scope>test</scope> |
83 | 83 | </dependency> |
84 | 84 | </dependencies> |
|
87 | 87 | <plugin> |
88 | 88 | <groupId>org.apache.maven.plugins</groupId> |
89 | 89 | <artifactId>maven-compiler-plugin</artifactId> |
90 | | - <version>3.7.0</version> |
| 90 | + <version>3.8.0</version> |
91 | 91 | <configuration> |
92 | 92 | <source>${java.version}</source> |
93 | 93 | <target>${java.version}</target> |
|
109 | 109 | <plugin> |
110 | 110 | <groupId>org.apache.maven.plugins</groupId> |
111 | 111 | <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> |
113 | 118 | <executions> |
114 | 119 | <execution> |
115 | 120 | <id>attach-javadocs</id> |
116 | 121 | <goals> |
117 | 122 | <goal>jar</goal> |
118 | 123 | </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> |
124 | 124 | </execution> |
125 | 125 | </executions> |
126 | 126 | </plugin> |
|
141 | 141 | <!-- Generate services --> |
142 | 142 | <plugin> |
143 | 143 | <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> |
146 | 145 | <executions> |
147 | 146 | <execution> |
148 | 147 | <id>generate-services</id> |
|
0 commit comments