|
5 | 5 | <groupId>org.java-websocket</groupId> |
6 | 6 | <artifactId>Java-WebSocket</artifactId> |
7 | 7 | <packaging>jar</packaging> |
8 | | - <version>1.5.4-SNAPSHOT</version> |
| 8 | + <version>1.5.5-SNAPSHOT</version> |
9 | 9 | <name>Java-WebSocket</name> |
10 | 10 | <description>A barebones WebSocket client and server implementation written 100% in Java</description> |
11 | 11 | <url>https://github.com/TooTallNate/Java-WebSocket</url> |
|
26 | 26 | <maven.javadoc.plugin.version>3.5.0</maven.javadoc.plugin.version> |
27 | 27 | <maven.shade.plugin.version>3.4.1</maven.shade.plugin.version> |
28 | 28 | <maven.source.plugin.version>3.2.1</maven.source.plugin.version> |
29 | | - <nexus.staging.maven.plugin.version>1.6.8</nexus.staging.maven.plugin.version> |
| 29 | + <nexus.staging.maven.plugin.version>1.6.13</nexus.staging.maven.plugin.version> |
30 | 30 | <sonar.projectKey>org.java-websocket:Java-WebSocket</sonar.projectKey> |
31 | 31 | <sonar.organization>marci4-github</sonar.organization> |
32 | 32 | <sonar.host.url>https://sonarcloud.io</sonar.host.url> |
|
156 | 156 | <groupId>org.apache.maven.plugins</groupId> |
157 | 157 | <artifactId>maven-javadoc-plugin</artifactId> |
158 | 158 | <version>${maven.javadoc.plugin.version}</version> |
| 159 | + <configuration> |
| 160 | + <sourcepath>src/main/java</sourcepath> |
| 161 | + <additionalOptions>-Xdoclint:none</additionalOptions> |
| 162 | + </configuration> |
159 | 163 | <executions> |
160 | 164 | <execution> |
161 | 165 | <id>attach-javadocs</id> |
|
182 | 186 | </goals> |
183 | 187 | </execution> |
184 | 188 | </executions> |
| 189 | + |
185 | 190 | </plugin> |
186 | 191 | <plugin> |
187 | 192 | <groupId>org.sonatype.plugins</groupId> |
|
250 | 255 | <extensions>true</extensions> |
251 | 256 | <configuration> |
252 | 257 | <serverId>ossrh</serverId> |
253 | | - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 258 | + <autoReleaseAfterClose>false</autoReleaseAfterClose> |
254 | 259 | <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
255 | 260 | </configuration> |
256 | 261 | </plugin> |
|
261 | 266 | <plugin> |
262 | 267 | <groupId>org.apache.maven.plugins</groupId> |
263 | 268 | <artifactId>maven-javadoc-plugin</artifactId> |
264 | | - </plugin> |
265 | | - </plugins> |
266 | | - </build> |
267 | | - </profile> |
268 | | - <profile> |
269 | | - <id>full</id> |
270 | | - <activation> |
271 | | - <activeByDefault>false</activeByDefault> |
272 | | - </activation> |
273 | | - <dependencies> |
274 | | - <dependency> |
275 | | - <groupId>org.slf4j</groupId> |
276 | | - <artifactId>slf4j-simple</artifactId> |
277 | | - </dependency> |
278 | | - </dependencies> |
279 | | - <build> |
280 | | - <plugins> |
281 | | - <plugin> |
282 | | - <groupId>biz.aQute.bnd</groupId> |
283 | | - <artifactId>bnd-maven-plugin</artifactId> |
284 | | - </plugin> |
285 | | - <plugin> |
286 | | - <groupId>org.apache.maven.plugins</groupId> |
287 | | - <artifactId>maven-shade-plugin</artifactId> |
288 | | - <executions> |
289 | | - <execution> |
290 | | - <phase>package</phase> |
291 | | - <goals> |
292 | | - <goal>shade</goal> |
293 | | - </goals> |
294 | | - <configuration> |
295 | | - <shadedArtifactAttached>true</shadedArtifactAttached> |
296 | | - <shadedClassifierName>with-dependencies</shadedClassifierName> |
297 | | - <transformers> |
298 | | - <transformer |
299 | | - implementation="org.apache.maven.plugins.shade.resource.IncludeResourceTransformer"> |
300 | | - <resource>simplelogger.properties</resource> |
301 | | - <file>src\main\example\simplelogger.properties</file> |
302 | | - </transformer> |
303 | | - </transformers> |
304 | | - </configuration> |
305 | | - </execution> |
306 | | - </executions> |
307 | | - </plugin> |
308 | | - <plugin> |
309 | | - <groupId>org.apache.maven.plugins</groupId> |
310 | | - <artifactId>maven-source-plugin</artifactId> |
311 | | - </plugin> |
312 | | - <plugin> |
313 | | - <groupId>org.apache.maven.plugins</groupId> |
314 | | - <artifactId>maven-jar-plugin</artifactId> |
315 | | - <executions> |
316 | | - <execution> |
317 | | - <goals> |
318 | | - <goal>test-jar</goal> |
319 | | - </goals> |
320 | | - </execution> |
321 | | - </executions> |
322 | | - </plugin> |
323 | | - <plugin> |
324 | | - <groupId>org.apache.maven.plugins</groupId> |
325 | | - <artifactId>maven-javadoc-plugin</artifactId> |
326 | | - </plugin> |
327 | | - <plugin> |
328 | | - <groupId>org.apache.maven.plugins</groupId> |
329 | | - <artifactId>maven-gpg-plugin</artifactId> |
| 269 | + <configuration> |
| 270 | + <additionalOptions>-Xdoclint:none</additionalOptions> |
| 271 | + </configuration> |
330 | 272 | </plugin> |
331 | 273 | </plugins> |
332 | 274 | </build> |
|
0 commit comments