Skip to content

Commit

Permalink
Resolve build warnings displayed at the start of the build (#1054)
Browse files Browse the repository at this point in the history
  • Loading branch information
aldaris authored Oct 1, 2024
1 parent b8c7bce commit 5edb5a1
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 7 deletions.
23 changes: 19 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -350,10 +350,6 @@
<maven-enforcer-plugin.version>3.5.0</maven-enforcer-plugin.version>
</properties>

<prerequisites>
<maven>3.5.0</maven>
</prerequisites>

<modules>
<module>offline-mode-parent</module>
<module>nashorn-parent</module>
Expand Down Expand Up @@ -1042,6 +1038,25 @@
</testResource>
</testResources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>enforce-versions</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>3.5.0</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
Expand Down
3 changes: 0 additions & 3 deletions wicket-security-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,6 @@
<name>wicket-security</name>
<inceptionYear>2006</inceptionYear>
<description>Parent project for wicket security projects</description>
<prerequisites>
<maven>2.1</maven>
</prerequisites>
<!-- Developers -->
<developers>
<developer>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,5 +169,14 @@
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.7.0</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>

0 comments on commit 5edb5a1

Please sign in to comment.