File tree Expand file tree Collapse file tree 4 files changed +10
-2795
lines changed
src/test/java/org/java_websocket/autobahn Expand file tree Collapse file tree 4 files changed +10
-2795
lines changed Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ Minimum Required JDK
114
114
115
115
` Java-WebSocket ` is known to work with:
116
116
117
- * Java 1.7 and higher
117
+ * Java 8 and higher
118
118
119
119
Other JRE implementations may work as well, but haven't been tested.
120
120
Original file line number Diff line number Diff line change @@ -10,9 +10,9 @@ repositories {
10
10
}
11
11
12
12
group = ' org.java-websocket'
13
- version = ' 1.5.8 -SNAPSHOT'
14
- sourceCompatibility = 1.7
15
- targetCompatibility = 1.7
13
+ version = ' 1.6.0 -SNAPSHOT'
14
+ sourceCompatibility = 1.8
15
+ targetCompatibility = 1.8
16
16
17
17
compileJava {
18
18
options. compilerArgs + = [' -encoding' , ' UTF-8' ]
@@ -35,8 +35,7 @@ publishing {
35
35
}
36
36
37
37
dependencies {
38
- implementation group : ' org.slf4j' , name : ' slf4j-api' , version : ' 2.0.6'
39
- testImplementation group : ' org.slf4j' , name : ' slf4j-simple' , version : ' 2.0.6'
40
- testImplementation group : ' junit' , name : ' junit' , version : ' 4.12'
41
- testImplementation group : ' org.json' , name : ' json' , version : ' 20180813'
38
+ implementation group : ' org.slf4j' , name : ' slf4j-api' , version : ' 2.0.13'
39
+ testImplementation group : ' org.slf4j' , name : ' slf4j-simple' , version : ' 2.0.13'
40
+ testImplementation group : ' junit' , name : ' junit' , version : ' 4.13.1'
42
41
}
Original file line number Diff line number Diff line change 5
5
<groupId >org.java-websocket</groupId >
6
6
<artifactId >Java-WebSocket</artifactId >
7
7
<packaging >jar</packaging >
8
- <version >1.5.8 -SNAPSHOT</version >
8
+ <version >1.6.0 -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 >
12
12
<properties >
13
13
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
14
- <slf4j .version>2.0.6 </slf4j .version>
14
+ <slf4j .version>2.0.13 </slf4j .version>
15
15
16
16
<!-- Test dependencies versions -->
17
- <junit .version>4.12</junit .version>
18
- <org .json.version>20180813</org .json.version>
17
+ <junit .version>4.13.1</junit .version>
19
18
20
19
<!-- Maven plugin versions -->
21
20
<bnd .maven.plugin.version>6.4.0</bnd .maven.plugin.version>
63
62
<version >${junit.version} </version >
64
63
<scope >test</scope >
65
64
</dependency >
66
- <dependency >
67
- <groupId >org.json</groupId >
68
- <artifactId >json</artifactId >
69
- <version >${org.json.version} </version >
70
- <scope >test</scope >
71
- </dependency >
72
65
</dependencies >
73
66
</dependencyManagement >
74
67
<build >
299
292
<artifactId >junit</artifactId >
300
293
<scope >test</scope >
301
294
</dependency >
302
- <dependency >
303
- <groupId >org.json</groupId >
304
- <artifactId >json</artifactId >
305
- <scope >test</scope >
306
- </dependency >
307
295
</dependencies >
308
296
<developers >
309
297
<developer >
You can’t perform that action at this time.
0 commit comments