Skip to content

Commit 3f40457

Browse files
committed
Fixed websocket dependency
1 parent 6c81cb7 commit 3f40457

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

pom.xml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@
4949

5050
<properties>
5151
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
52+
<maven.compiler.source>1.8</maven.compiler.source>
53+
<maven.compiler.target>1.8</maven.compiler.target>
5254
</properties>
5355

5456
<build>
@@ -57,13 +59,13 @@
5759
<plugin>
5860
<groupId>org.apache.maven.plugins</groupId>
5961
<artifactId>maven-compiler-plugin</artifactId>
60-
<version>3.1</version>
62+
<version>3.5.1</version>
6163
<configuration>
6264
<fork>true</fork>
6365
<meminitial>128m</meminitial>
6466
<maxmem>512m</maxmem>
65-
<source>1.6</source>
66-
<target>1.6</target>
67+
<source>1.8</source>
68+
<target>1.8</target>
6769
<encoding>UTF-8</encoding>
6870
</configuration>
6971
</plugin>
@@ -109,7 +111,7 @@
109111
<dependency>
110112
<groupId>org.java-websocket</groupId>
111113
<artifactId>Java-WebSocket</artifactId>
112-
<version>1.3.7</version>
114+
<version>1.3.4</version>
113115
<scope>compile</scope>
114116
</dependency>
115117
</dependencies>

0 commit comments

Comments
 (0)