Skip to content

Commit

Permalink
Downgraded back maven-enforcer-plugin version
Browse files Browse the repository at this point in the history
  • Loading branch information
c8y3 committed Jun 22, 2023
1 parent 9d2a260 commit eb5e839
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -225,18 +225,28 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<!-- check newest version here: https://central.sonatype.com/artifact/org.apache.maven.plugins/maven-enforcer-plugin -->
<version>3.3.0</version>
<version>3.0.0</version>
<executions>
<execution>
<id>enforce-maven</id>
<id>enforce-versions</id>
<phase>validate</phase>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<fail>true</fail>
<failFast>false</failFast>
<rules>
<banDuplicatePomDependencyVersions/>
<requireMavenVersion>
<version>3.0.0</version>
<version>[3.6.0,)</version>
</requireMavenVersion>
<requireJavaVersion>
<version>[17.0,17.99]</version>
</requireJavaVersion>
<requireOS>
<family>unix</family>
</requireOS>
</rules>
</configuration>
</execution>
Expand Down

0 comments on commit eb5e839

Please sign in to comment.