Skip to content

Commit

Permalink
infra: avoid maven warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Bananeweizen authored and muhlba91 committed Apr 11, 2024
1 parent 2f436be commit 2a538c5
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
<checkstyle.sevntu.configLocation>https://raw.githubusercontent.com/checkstyle/checkstyle/checkstyle-${maven.sevntu.checkstyle.plugin.checkstyle.version}/config/checkstyle-sevntu-checks.xml</checkstyle.sevntu.configLocation>
<checkstyle.sevntu.cache.file>${project.build.outputDirectory}/sevntu.cache</checkstyle.sevntu.cache.file>
<maven.jacoco.plugin.version>0.8.10</maven.jacoco.plugin.version>
<java.version>11</java.version>
<maven.compiler.release>11</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- we disable ITs by default as it need download of 200MB sonar application jar -->
<skipITs>true</skipITs>
Expand Down Expand Up @@ -330,10 +330,6 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
Expand Down Expand Up @@ -452,7 +448,7 @@
<version>3.13.0</version>
<configuration>
<analysisCache>false</analysisCache>
<targetJdk>${java.version}</targetJdk>
<targetJdk>${maven.compiler.release}</targetJdk>
<minimumTokens>20</minimumTokens>
<skipEmptyReport>false</skipEmptyReport>
<failOnViolation>true</failOnViolation>
Expand Down Expand Up @@ -515,7 +511,7 @@
<artifactId>forbiddenapis</artifactId>
<version>3.5.1</version>
<configuration>
<targetVersion>${java.version}</targetVersion>
<targetVersion>${maven.compiler.release}</targetVersion>
<failOnUnsupportedJava>false</failOnUnsupportedJava>
<bundledSignatures>
<bundledSignature>jdk-unsafe</bundledSignature>
Expand Down Expand Up @@ -804,7 +800,7 @@
<configuration>
<rules>
<requireJavaVersion>
<version>${java.version}</version>
<version>${maven.compiler.release}</version>
</requireJavaVersion>
<requireMavenVersion>
<version>3.0.1</version>
Expand Down

0 comments on commit 2a538c5

Please sign in to comment.