This is an automated email from the ASF dual-hosted git repository. ottlinger pushed a commit to branch feature/TENTACLES-26 in repository https://gitbox.apache.org/repos/asf/creadur-tentacles.git
commit ecf6ecec47e06ebe662a08fdacfaedfe259c91b3 Author: P. Ottlinger <[email protected]> AuthorDate: Fri Jul 17 12:53:34 2026 +0200 TENTACLES-26: Fix JDK release version and remove animal-sniffer as we are above JDK9 --- pom.xml | 30 +----------------------------- 1 file changed, 1 insertion(+), 29 deletions(-) diff --git a/pom.xml b/pom.xml index a8c993c..52bb2e0 100644 --- a/pom.xml +++ b/pom.xml @@ -101,6 +101,7 @@ <project.build.outputTimestamp>2022-10-22T23:25:45Z</project.build.outputTimestamp> <maven.compiler.source>${javaVersion}</maven.compiler.source> <maven.compiler.target>${javaVersion}</maven.compiler.target> + <maven.compiler.release>${javaVersion}</maven.compiler.release> </properties> <distributionManagement> <site> @@ -144,8 +145,6 @@ <version>3.15.0</version> <configuration> <release>${javaVersion}</release> - <source>${javaVersion}</source> - <target>${javaVersion}</target> </configuration> </plugin> <plugin> @@ -180,33 +179,6 @@ </dependency> </dependencies> </plugin> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>animal-sniffer-maven-plugin</artifactId> - <version>1.27</version> - <executions> - <execution> - <!-- This checks the source code of our project --> - <!-- - Note that this cannot use our ${javaVersion} property, so it must - be changed manually when we decide to move to a higher version of - Java - --> - <id>check-java-1.8-compat</id> - <phase>process-classes</phase> - <goals> - <goal>check</goal> - </goals> - <configuration> - <signature> - <groupId>org.codehaus.mojo.signature</groupId> - <artifactId>java18</artifactId> - <version>1.0</version> - </signature> - </configuration> - </execution> - </executions> - </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId>
