Skip to content

Commit

Permalink
#3571 - Update dependencies
Browse files Browse the repository at this point in the history
- Wicket Bootstrap 6.0.0 -> 6.0.1
- Added enforcer config to inception-boot-loader module so latest m2e configures the execution environment correctly
  • Loading branch information
reckart committed Feb 27, 2023
1 parent f1ce910 commit 13c3f44
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
23 changes: 23 additions & 0 deletions inception/inception-boot-loader/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,27 @@
<artifactId>spring-boot-loader-tools</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireJavaVersion>
<version>[1.8,)</version>
</requireJavaVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
2 changes: 1 addition & 1 deletion inception/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
<wicket.version>9.12.0</wicket.version>
<wicketstuff.version>9.12.0</wicketstuff.version>
<wicket-jquery-ui.version>9.11.0</wicket-jquery-ui.version>
<wicket-bootstrap.version>6.0.0</wicket-bootstrap.version>
<wicket-bootstrap.version>6.0.1</wicket-bootstrap.version>
<wicket-jquery-selectors.version>3.0.4</wicket-jquery-selectors.version>
<wicket-webjars.version>3.0.6</wicket-webjars.version>
<!-- Stuck with 3.1.6: https://github.com/MarcGiffing/wicket-spring-boot/issues/199 -->
Expand Down

0 comments on commit 13c3f44

Please sign in to comment.