This is an automated email from the ASF dual-hosted git repository. cdutz pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/plc4x-extras.git
The following commit(s) were added to refs/heads/develop by this push: new 9d86ed6 chore: Disabled the UI module and made sure the opcua-server is only built on Java 17 or higher. 9d86ed6 is described below commit 9d86ed6eba75e471b4bd574d5391ea62a2506625 Author: Christofer Dutz <cd...@apache.org> AuthorDate: Mon Apr 29 09:32:41 2024 +0200 chore: Disabled the UI module and made sure the opcua-server is only built on Java 17 or higher. --- plc4j/tools/pom.xml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/plc4j/tools/pom.xml b/plc4j/tools/pom.xml index d66e647..970e3c7 100644 --- a/plc4j/tools/pom.xml +++ b/plc4j/tools/pom.xml @@ -38,7 +38,6 @@ </properties> <modules> - <module>opcua-server</module> <module>plc4x-server</module> </modules> @@ -49,6 +48,16 @@ --> <profiles> <profile> + <id>.above-or-equal-java-17</id> + <activation> + <jdk>[17,)</jdk> + </activation> + <modules> + <module>opcua-server</module> + </modules> + </profile> + <!-- Disabled till someone volunteers to keep on working on this. --> + <!--profile> <id>.above-or-equal-java-19</id> <activation> <jdk>[19,)</jdk> @@ -56,7 +65,7 @@ <modules> <module>ui</module> </modules> - </profile> + </profile--> </profiles> </project> \ No newline at end of file