Skip to content

Commit f750fa5

Browse files
authored
Update to Java 17 (OpenEMS#1685)
Java 17 is the latest LTS (Long Term Support) release of Java. See discussion in OpenEMS Community: https://community.openems.io/t/switch-to-java-17/1326
1 parent 8384f5a commit f750fa5

File tree

179 files changed

+184
-185
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

179 files changed

+184
-185
lines changed

.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ jobs:
66
steps:
77
- uses: actions/checkout@v3
88

9-
- name: Setup Java 11
9+
- name: Setup Java 17
1010
uses: actions/setup-java@v3
1111
with:
1212
distribution: 'temurin'
13-
java-version: '11'
13+
java-version: '17'
1414
java-package: jdk
1515

1616
- name: Setup Cache for Java/Gradle

.gitpod.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM gitpod/workspace-postgres
22

33
RUN bash -c ". /home/gitpod/.sdkman/bin/sdkman-init.sh \
4-
&& sdk install java 11.0.13-tem"
4+
&& sdk install java 17.0.6-tem"
55

66
# disable angular analytics
77
ENV NG_CLI_ANALYTICS=false

cnf/build.bnd

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,5 +74,5 @@ testpath: \
7474
Edge_Timedata;member=${filter;${p};io\.openems\.edge\.timedata\..*},\
7575
Edge_TimeOfUseTariff;member=${filter;${p};io\.openems\.edge\.timeofusetariff\..*},\
7676

77-
javac.source: 11
78-
javac.target: 11
77+
javac.source: 17
78+
javac.target: 17

doc/modules/ROOT/pages/contribute/coding-guidelines.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* Use precise naming for methods/functions
2727
* Use narrow scopes for variables; avoid class variables
2828
* Split code in Interface, Implementation(..Impl) and Config files
29-
* Use modern Java 11 syntax (e.g. 'var' keyword, streams, etc.)
29+
* Use modern Java 17 syntax (e.g. 'var' keyword, streams, etc.)
3030
* Add readme.adoc to a new bundle
3131
* Review data in bnd.bnd file
3232
* Format all files via Eclipse Autoformat, organize Imports, apply Checkstyle suggestions (see below)

doc/modules/ROOT/pages/gettingstarted.adoc

+4-4
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ NOTE: OpenEMS uses the **git** version control system via the popular GitHub pla
4242
NOTE: Eclipse IDE is the recommended development environment for newcomers to OpenEMS. If you are more familiar with IntelliJ IDEA, feel free to use it. Follow xref:intellij.adoc[this guide].
4343

4444
. Prepare Eclipse IDE
45-
.. Download Java Development Kit (JDK) 11 and install it. We recommend the https://adoptium.net/?variant=openjdk11&jvmVariant=hotspot[OpenJDK Temurin builds by the Adoptium project]
45+
.. Download Java Development Kit (JDK) 17 and install it. We recommend the https://adoptium.net/de/temurin/releases/?version=17[OpenJDK Temurin builds by the Adoptium project]
4646
.. Download https://www.eclipse.org[Eclipse for Java icon:external-link[]], install and start it
4747
.. On first start you will get asked to create a workspace.
4848
Select your source code directory (`C:\Users\your.user\git\openems` in our example) and press btn:[Launch].
@@ -54,15 +54,15 @@ image::eclipse-workspace.png[Creating a workspace in Eclipse IDE]
5454
+
5555
Menu: btn:[Help] → btn:[Eclipse Marketplace...] → btn:[Find:] → enter btn:[Bndtools] → press btn:[Install]
5656

57-
.. Configure Eclipse IDE to use JDK 11.
57+
.. Configure Eclipse IDE to use JDK 17.
5858
+
5959
- In the Menu select btn:[Windows] → btn:[Preferences]
6060
- Select btn:[Java] - btn:[Installed JREs] in the navigation tree
6161
- Press the btn:[Add...] button
6262
- Keep btn:[Standard VM] selected and press btn:[Next >]
63-
- Press the btn:[Directory...] button and select the folder of the installed JDK (e.g. `C:\Program Files\Eclipse Adoptium\jdk-11.0.13.8-hotspot`)
63+
- Press the btn:[Directory...] button and select the folder of the installed JDK (e.g. `C:\Program Files\Eclipse Adoptium\jdk-17.0.6.10-hotspot`)
6464
- Press the btn:[Finish] button
65-
- Back in the Preferences window, tick the newly added JDK 11 and press btn:[Apply and Close]
65+
- Back in the Preferences window, tick the newly added JDK 17 and press btn:[Apply and Close]
6666
+
6767
.Creating a workspace in Eclipse IDE
6868
image::eclipse-select-jdk.png[Set the Java Development Kit in Eclipse IDE]

io.openems.backend.alerting/.classpath

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
33
<classpathentry kind="con" path="aQute.bnd.classpath.container"/>
4-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"/>
55
<classpathentry kind="src" output="bin" path="src"/>
66
<classpathentry kind="src" output="bin_test" path="test">
77
<attributes>

io.openems.backend.application/.classpath

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
33
<classpathentry kind="con" path="aQute.bnd.classpath.container"/>
4-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"/>
55
<classpathentry kind="src" output="bin" path="src"/>
66
<classpathentry kind="src" output="bin_test" path="test">
77
<attributes>

io.openems.backend.application/BackendApp.bndrun

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
-runfw: org.apache.felix.framework;version='[7.0.5,7.0.5]'
2-
-runee: JavaSE-11
2+
-runee: JavaSE-17
33
-runprovidedcapabilities: ${native_capability}
44

55
-resolve.effective: active

io.openems.backend.b2brest/.classpath

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
33
<classpathentry kind="con" path="aQute.bnd.classpath.container"/>
4-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"/>
55
<classpathentry kind="src" output="bin" path="src"/>
66
<classpathentry kind="src" output="bin_test" path="test">
77
<attributes>

io.openems.backend.b2bwebsocket/.classpath

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
33
<classpathentry kind="con" path="aQute.bnd.classpath.container"/>
4-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"/>
55
<classpathentry kind="src" output="bin" path="src"/>
66
<classpathentry kind="src" output="bin_test" path="test">
77
<attributes>

io.openems.backend.common/.classpath

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
33
<classpathentry kind="con" path="aQute.bnd.classpath.container"/>
4-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"/>
55
<classpathentry kind="src" output="bin" path="src"/>
66
<classpathentry kind="src" output="bin_test" path="test">
77
<attributes>

io.openems.backend.core/.classpath

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
33
<classpathentry kind="con" path="aQute.bnd.classpath.container"/>
4-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"/>
55
<classpathentry kind="src" output="bin" path="src"/>
66
<classpathentry kind="src" output="bin_test" path="test">
77
<attributes>

io.openems.backend.edgewebsocket/.classpath

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
33
<classpathentry kind="con" path="aQute.bnd.classpath.container"/>
4-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"/>
55
<classpathentry kind="src" output="bin" path="src"/>
66
<classpathentry kind="src" output="bin_test" path="test">
77
<attributes>

io.openems.backend.metadata.dummy/.classpath

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
33
<classpathentry kind="con" path="aQute.bnd.classpath.container"/>
4-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"/>
55
<classpathentry kind="src" output="bin" path="src"/>
66
<classpathentry kind="src" output="bin_test" path="test">
77
<attributes>

io.openems.backend.metadata.file/.classpath

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
33
<classpathentry kind="con" path="aQute.bnd.classpath.container"/>
4-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"/>
55
<classpathentry kind="src" output="bin" path="src"/>
66
<classpathentry kind="src" output="bin_test" path="test">
77
<attributes>

io.openems.backend.metadata.odoo/.classpath

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
33
<classpathentry kind="con" path="aQute.bnd.classpath.container"/>
4-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"/>
55
<classpathentry kind="src" output="bin" path="src"/>
66
<classpathentry kind="src" output="bin_test" path="test">
77
<attributes>

io.openems.backend.timedata.dummy/.classpath

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
33
<classpathentry kind="con" path="aQute.bnd.classpath.container"/>
4-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"/>
55
<classpathentry kind="src" output="bin" path="src"/>
66
<classpathentry kind="src" output="bin_test" path="test">
77
<attributes>

io.openems.backend.timedata.influx/.classpath

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
33
<classpathentry kind="con" path="aQute.bnd.classpath.container"/>
4-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"/>
55
<classpathentry kind="src" output="bin" path="src"/>
66
<classpathentry kind="src" output="bin_test" path="test">
77
<attributes>

io.openems.backend.timedata.timescaledb/.classpath

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
33
<classpathentry kind="con" path="aQute.bnd.classpath.container"/>
4-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"/>
55
<classpathentry kind="src" output="bin" path="src"/>
66
<classpathentry kind="src" output="bin_test" path="test">
77
<attributes>

io.openems.backend.uiwebsocket/.classpath

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
33
<classpathentry kind="con" path="aQute.bnd.classpath.container"/>
4-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"/>
55
<classpathentry kind="src" output="bin" path="src"/>
66
<classpathentry kind="src" output="bin_test" path="test">
77
<attributes>

io.openems.common/.classpath

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
33
<classpathentry kind="con" path="aQute.bnd.classpath.container"/>
4-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"/>
55
<classpathentry kind="src" output="bin" path="src"/>
66
<classpathentry kind="src" output="bin_test" path="test">
77
<attributes>

io.openems.edge.application/.classpath

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
33
<classpathentry kind="con" path="aQute.bnd.classpath.container"/>
4-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"/>
55
<classpathentry kind="src" output="bin" path="src"/>
66
<classpathentry kind="src" output="bin_test" path="test">
77
<attributes>

io.openems.edge.application/EdgeApp.bndrun

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
-runfw: org.apache.felix.framework;version='[7.0.5,7.0.5]'
2-
-runee: JavaSE-11
2+
-runee: JavaSE-17
33
-runprovidedcapabilities: ${native_capability}
44

55
-resolve.effective: active

io.openems.edge.battery.api/.classpath

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
33
<classpathentry kind="con" path="aQute.bnd.classpath.container"/>
4-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"/>
55
<classpathentry kind="src" output="bin" path="src"/>
66
<classpathentry kind="src" output="bin_test" path="test">
77
<attributes>

io.openems.edge.battery.bmw/.classpath

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
33
<classpathentry kind="con" path="aQute.bnd.classpath.container"/>
4-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"/>
55
<classpathentry kind="src" output="bin" path="src"/>
66
<classpathentry kind="src" output="bin_test" path="test">
77
<attributes>

io.openems.edge.battery.bydcommercial/.classpath

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
33
<classpathentry kind="con" path="aQute.bnd.classpath.container"/>
4-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"/>
55
<classpathentry kind="src" output="bin" path="src"/>
66
<classpathentry kind="src" output="bin_test" path="test">
77
<attributes>

io.openems.edge.battery.fenecon.commercial/.classpath

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
33
<classpathentry kind="con" path="aQute.bnd.classpath.container"/>
4-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"/>
55
<classpathentry kind="src" output="bin" path="src"/>
66
<classpathentry kind="src" output="bin_test" path="test">
77
<attributes>

io.openems.edge.battery.fenecon.home/.classpath

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
33
<classpathentry kind="con" path="aQute.bnd.classpath.container"/>
4-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"/>
55
<classpathentry kind="src" output="bin" path="src"/>
66
<classpathentry kind="src" output="bin_test" path="test">
77
<attributes>

io.openems.edge.battery.soltaro/.classpath

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
33
<classpathentry kind="con" path="aQute.bnd.classpath.container"/>
4-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"/>
55
<classpathentry kind="src" output="bin" path="src"/>
66
<classpathentry kind="src" output="bin_test" path="test">
77
<attributes>

io.openems.edge.batteryinverter.api/.classpath

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
33
<classpathentry kind="con" path="aQute.bnd.classpath.container"/>
4-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"/>
55
<classpathentry kind="src" output="bin" path="src"/>
66
<classpathentry kind="src" output="bin_test" path="test">
77
<attributes>

io.openems.edge.batteryinverter.kaco.blueplanetgridsave/.classpath

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
33
<classpathentry kind="con" path="aQute.bnd.classpath.container"/>
4-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"/>
55
<classpathentry kind="src" output="bin" path="src"/>
66
<classpathentry kind="src" output="bin_test" path="test">
77
<attributes>

io.openems.edge.batteryinverter.refu88k/.classpath

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
33
<classpathentry kind="con" path="aQute.bnd.classpath.container"/>
4-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"/>
55
<classpathentry kind="src" output="bin" path="src"/>
66
<classpathentry kind="src" output="bin_test" path="test">
77
<attributes>

io.openems.edge.batteryinverter.sinexcel/.classpath

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
33
<classpathentry kind="con" path="aQute.bnd.classpath.container"/>
4-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"/>
55
<classpathentry kind="src" output="bin" path="src"/>
66
<classpathentry kind="src" output="bin_test" path="test">
77
<attributes>

io.openems.edge.batteryinverter.sunspec/.classpath

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
33
<classpathentry kind="con" path="aQute.bnd.classpath.container"/>
4-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"/>
55
<classpathentry kind="src" output="bin" path="src"/>
66
<classpathentry kind="src" output="bin_test" path="test">
77
<attributes>

io.openems.edge.bosch.bpts5hybrid/.classpath

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
33
<classpathentry kind="con" path="aQute.bnd.classpath.container"/>
4-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"/>
55
<classpathentry kind="src" output="bin" path="src"/>
66
<classpathentry kind="src" output="bin_test" path="test">
77
<attributes>

io.openems.edge.bridge.mbus/.classpath

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
33
<classpathentry kind="con" path="aQute.bnd.classpath.container"/>
4-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"/>
55
<classpathentry kind="src" output="bin" path="src"/>
66
<classpathentry kind="src" output="bin_test" path="test">
77
<attributes>

0 commit comments

Comments
 (0)