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.git
commit 44957840a791b15372adacd6d1f59847c84b20c9 Author: Christofer Dutz <[email protected]> AuthorDate: Wed Oct 22 08:36:56 2025 +0200 chore: Ensured the PLC4J-API module is compatible with Java 17 --- plc4j/api/pom.xml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/plc4j/api/pom.xml b/plc4j/api/pom.xml index 1beb54af4c..17dcbfcb59 100644 --- a/plc4j/api/pom.xml +++ b/plc4j/api/pom.xml @@ -35,6 +35,18 @@ <project.build.outputTimestamp>2025-08-02T13:55:11Z</project.build.outputTimestamp> </properties> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <release>17</release> + </configuration> + </plugin> + </plugins> + </build> + <dependencies> <dependency> <groupId>nl.jqno.equalsverifier</groupId>
