Skip to content

Commit 69140a6

Browse files
authored
Merge pull request TooTallNate#1345 from marci4/increase_version_1.5.5
2 parents f4ab474 + d33bedd commit 69140a6

1 file changed

Lines changed: 11 additions & 69 deletions

File tree

pom.xml

Lines changed: 11 additions & 69 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>org.java-websocket</groupId>
66
<artifactId>Java-WebSocket</artifactId>
77
<packaging>jar</packaging>
8-
<version>1.5.4-SNAPSHOT</version>
8+
<version>1.5.5-SNAPSHOT</version>
99
<name>Java-WebSocket</name>
1010
<description>A barebones WebSocket client and server implementation written 100% in Java</description>
1111
<url>https://github.com/TooTallNate/Java-WebSocket</url>
@@ -26,7 +26,7 @@
2626
<maven.javadoc.plugin.version>3.5.0</maven.javadoc.plugin.version>
2727
<maven.shade.plugin.version>3.4.1</maven.shade.plugin.version>
2828
<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>
3030
<sonar.projectKey>org.java-websocket:Java-WebSocket</sonar.projectKey>
3131
<sonar.organization>marci4-github</sonar.organization>
3232
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
@@ -156,6 +156,10 @@
156156
<groupId>org.apache.maven.plugins</groupId>
157157
<artifactId>maven-javadoc-plugin</artifactId>
158158
<version>${maven.javadoc.plugin.version}</version>
159+
<configuration>
160+
<sourcepath>src/main/java</sourcepath>
161+
<additionalOptions>-Xdoclint:none</additionalOptions>
162+
</configuration>
159163
<executions>
160164
<execution>
161165
<id>attach-javadocs</id>
@@ -182,6 +186,7 @@
182186
</goals>
183187
</execution>
184188
</executions>
189+
185190
</plugin>
186191
<plugin>
187192
<groupId>org.sonatype.plugins</groupId>
@@ -250,7 +255,7 @@
250255
<extensions>true</extensions>
251256
<configuration>
252257
<serverId>ossrh</serverId>
253-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
258+
<autoReleaseAfterClose>false</autoReleaseAfterClose>
254259
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
255260
</configuration>
256261
</plugin>
@@ -261,72 +266,9 @@
261266
<plugin>
262267
<groupId>org.apache.maven.plugins</groupId>
263268
<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>
330272
</plugin>
331273
</plugins>
332274
</build>

0 commit comments

Comments
 (0)