Skip to content

Commit

Permalink
Merge pull request #124 from ubitricity/master
Browse files Browse the repository at this point in the history
Bump Java-WebSocket consistently to 1.5.1
  • Loading branch information
TVolden authored Oct 8, 2020
2 parents 65e792d + 5d97b97 commit ca85846
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion OCPP-J/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
dependencies {
compile project(':common')
compile 'com.google.code.gson:gson:2.8.0'
compile 'org.java-websocket:Java-WebSocket:1.3.8'
compile 'org.java-websocket:Java-WebSocket:1.5.1'
testCompile 'junit:junit:4.12'
testCompile 'org.mockito:mockito-core:1.10.19'
testCompile 'org.hamcrest:hamcrest-core:1.3'
Expand Down
2 changes: 1 addition & 1 deletion OCPP-J/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<dependency>
<groupId>org.java-websocket</groupId>
<artifactId>Java-WebSocket</artifactId>
<version>1.5.0</version>
<version>1.5.1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ of this software and associated documentation files (the "Software"), to deal
import java.util.Base64;
import java.util.HashMap;
import java.util.Map;

import org.java_websocket.client.WebSocketClient;
import org.java_websocket.drafts.Draft;
import org.java_websocket.exceptions.WebsocketNotConnectedException;
Expand Down Expand Up @@ -67,7 +66,7 @@ public WebSocketTransmitter(Draft draft) {
public void connect(String uri, RadioEvents events) {
final URI resource = URI.create(uri);

Map<String,String> httpHeaders = new HashMap<>();
Map<String, String> httpHeaders = new HashMap<>();
String username = configuration.getParameter(JSONConfiguration.USERNAME_PARAMETER);
String password = configuration.getParameter(JSONConfiguration.PASSWORD_PARAMETER);
if (username != null && password != null) {
Expand Down
2 changes: 1 addition & 1 deletion ocpp-v1_6/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
dependencies {
compile project(':common')
compile project(':OCPP-J')
compile 'org.java-websocket:Java-WebSocket:1.3.8'
compile 'org.java-websocket:Java-WebSocket:1.5.1'
compile group: 'javax.xml.soap', name: 'javax.xml.soap-api', version: '1.4.0'

testCompile 'junit:junit:4.12'
Expand Down
2 changes: 1 addition & 1 deletion ocpp-v1_6/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
<dependency>
<groupId>org.java-websocket</groupId>
<artifactId>Java-WebSocket</artifactId>
<version>1.5.0</version>
<version>1.5.1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down
2 changes: 1 addition & 1 deletion ocpp-v2_0/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
dependencies {
compile project(':common')
compile project(':OCPP-J')
compile 'org.java-websocket:Java-WebSocket:1.3.8'
compile 'org.java-websocket:Java-WebSocket:1.5.1'
testCompile 'junit:junit:4.12'
testCompile 'org.mockito:mockito-core:1.10.19'
testCompile 'org.hamcrest:hamcrest-core:1.3'
Expand Down
2 changes: 1 addition & 1 deletion ocpp-v2_0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<dependency>
<groupId>org.java-websocket</groupId>
<artifactId>Java-WebSocket</artifactId>
<version>1.5.0</version>
<version>1.5.1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down

0 comments on commit ca85846

Please sign in to comment.