Skip to content

Commit ae3c088

Browse files
committed
Update to 1.3.4
1 parent 3e84852 commit ae3c088

File tree

3 files changed

+60
-55
lines changed

3 files changed

+60
-55
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repositories {
99
}
1010

1111
group = 'org.java_websocket'
12-
version = '1.3.3'
12+
version = '1.3.4'
1313
sourceCompatibility = 1.6
1414
targetCompatibility = 1.6
1515

pom.xml

Lines changed: 58 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>org.java-websocket</groupId>
4-
<artifactId>java-websocket</artifactId>
4+
<artifactId>Java-WebSocket</artifactId>
55
<packaging>jar</packaging>
6-
<version>1.3.3</version>
7-
<name>java-websocket</name>
6+
<version>1.3.4</version>
7+
<name>Java-WebSocket</name>
88
<description>A barebones WebSocket client and server implementation written 100% in Java</description>
99
<url>https://github.com/TooTallNate/Java-WebSocket</url>
1010
<licenses>
@@ -16,60 +16,68 @@
1616
<scm>
1717
<url>https://github.com/TooTallNate/Java-WebSocket</url>
1818
</scm>
19+
<distributionManagement>
20+
<snapshotRepository>
21+
<id>ossrh</id>
22+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
23+
</snapshotRepository>
24+
</distributionManagement>
1925
<build>
20-
<sourceDirectory>src\main\java</sourceDirectory>
21-
<testSourceDirectory>test</testSourceDirectory>
22-
<resources>
23-
<resource>
24-
<directory>resources</directory>
25-
</resource>
26-
</resources>
27-
<testResources>
28-
<testResource>
29-
<directory>resources</directory>
30-
</testResource>
31-
</testResources>
32-
<directory>target</directory>
33-
<outputDirectory>target\classes</outputDirectory>
34-
<plugins/>
26+
<sourceDirectory>src/main/java</sourceDirectory>
27+
<plugins>
28+
<plugin>
29+
<groupId>org.sonatype.plugins</groupId>
30+
<artifactId>nexus-staging-maven-plugin</artifactId>
31+
<version>1.6.7</version>
32+
<extensions>true</extensions>
33+
<configuration>
34+
<serverId>ossrh</serverId>
35+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
36+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
37+
</configuration>
38+
</plugin>
39+
<plugin>
40+
<groupId>org.apache.maven.plugins</groupId>
41+
<artifactId>maven-source-plugin</artifactId>
42+
<version>2.2.1</version>
43+
<executions>
44+
<execution>
45+
<id>attach-sources</id>
46+
<goals>
47+
<goal>jar-no-fork</goal>
48+
</goals>
49+
</execution>
50+
</executions>
51+
</plugin>
52+
<plugin>
53+
<groupId>org.apache.maven.plugins</groupId>
54+
<artifactId>maven-javadoc-plugin</artifactId>
55+
<version>2.9.1</version>
56+
<executions>
57+
<execution>
58+
<id>attach-javadocs</id>
59+
<goals>
60+
<goal>jar</goal>
61+
</goals>
62+
</execution>
63+
</executions>
64+
</plugin>
65+
</plugins>
3566
</build>
36-
<repositories>
37-
<repository>
38-
<id>central</id>
39-
<url>https://repo1.maven.org/maven2/</url>
40-
<snapshots>
41-
<enabled>false</enabled>
42-
</snapshots>
43-
<releases>
44-
<enabled>true</enabled>
45-
</releases>
46-
</repository>
47-
<repository>
48-
<id>clojars</id>
49-
<url>https://clojars.org/repo/</url>
50-
<snapshots>
51-
<enabled>true</enabled>
52-
</snapshots>
53-
<releases>
54-
<enabled>true</enabled>
55-
</releases>
56-
</repository>
57-
</repositories>
58-
<dependencyManagement>
59-
<dependencies/>
60-
</dependencyManagement>
61-
<dependencies/>
67+
<dependencies>
68+
<dependency>
69+
<groupId>junit</groupId>
70+
<artifactId>junit</artifactId>
71+
<version>4.11</version>
72+
<scope>test</scope>
73+
</dependency>
74+
</dependencies>
6275
<developers>
6376
<developer>
6477
<name>Nathan Rajlich</name>
6578
<url>https://github.com/TooTallNate</url>
6679
<email>[email protected]</email>
6780
</developer>
68-
<developer>
69-
<name>David Rohmer</name>
70-
<url>https://github.com/Davidiusdadi</url>
71-
<email>[email protected]</email>
72-
</developer>
7381
<developer>
7482
<name>Marcel Prestel</name>
7583
<url>https://github.com/marci4</url>
@@ -78,7 +86,4 @@
7886
</developers>
7987
</project>
8088

81-
<!-- This file was autogenerated by Leiningen.
82-
Please do not edit it directly; instead edit project.clj and regenerate it.
83-
It should not be considered canonical data. For more information see
84-
https://github.com/technomancy/leiningen -->
89+

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject org.java-websocket/java-websocket "1.3.3"
1+
(defproject org.java-websocket/java-websocket "1.3.4"
22
:description "A barebones WebSocket client and server implementation written 100% in Java"
33
:url "https://github.com/TooTallNate/Java-WebSocket"
44
:scm {:name "git"

0 commit comments

Comments
 (0)