Skip to content

Commit 19aaeb4

Browse files
committed
switch to java 8
since java 7 reached end of life, we migrated to java 8. from now on we require jdk 8 to build and run. in the near future, we will slowly change/update the code base to make use of java 8's features
1 parent b7f5b54 commit 19aaeb4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Supported OCPP protocols
1616
Requirements & Configuration
1717
-----
1818

19-
1. You need JDK 7, Maven and MySQL.
19+
1. You need JDK 8, Maven and MySQL.
2020

2121
2. The charge points must be configured to communicate with following addresses. Depending on the OCPP version of the charge point, SteVe will automatically route messages to the version-specific implementation.
2222
- SOAP: `http://<your-server-ip>:<port>/steve/services/CentralSystemService`

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>de.rwth.idsg</groupId>
55
<artifactId>steve</artifactId>
6-
<version>1.2.0</version>
6+
<version>1.3.0</version>
77
<packaging>jar</packaging>
88

99
<developers>
@@ -22,7 +22,7 @@
2222
</licenses>
2323

2424
<properties>
25-
<java.version>1.7</java.version>
25+
<java.version>1.8</java.version>
2626
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2727
<jooq.version>3.6.2</jooq.version>
2828
<cxf.version>3.1.1</cxf.version>

0 commit comments

Comments
 (0)