Skip to content

Commit

Permalink
bump springa i angulara
Browse files Browse the repository at this point in the history
  • Loading branch information
JanisBe committed Apr 15, 2024
1 parent d9b8a82 commit 4d7af2c
Show file tree
Hide file tree
Showing 3 changed files with 167 additions and 142 deletions.
29 changes: 27 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<lombok.version>1.18.32</lombok.version>
<jasypt.version>3.0.5</jasypt.version>
<apache-commons.version>3.14.0</apache-commons.version>
<spring-version>6.2.3</spring-version>
<spring-version>6.2.4</spring-version>
</properties>
<dependencies>
<dependency>
Expand Down Expand Up @@ -169,7 +169,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.12.1</version>
<version>3.13.0</version>
<configuration>
<annotationProcessorPaths>
<path>
Expand Down Expand Up @@ -259,6 +259,31 @@
<artifactId>jasypt-maven-plugin</artifactId>
<version>${jasypt.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.4.1</version>
<executions>
<execution>
<id>enforce</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<banDuplicatePomDependencyVersions/>
<requireMavenVersion>
<version>3.9.6</version>
<message>Invalid Maven version. It should, at least, be 3.9</message>
</requireMavenVersion>
<requireJavaVersion>
<version>17</version>
</requireJavaVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down
Loading

0 comments on commit 4d7af2c

Please sign in to comment.