Skip to content

Commit

Permalink
Update Java versions
Browse files Browse the repository at this point in the history
  • Loading branch information
julgus committed Jun 2, 2023
1 parent 6c11eb4 commit 32b71d1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
9 changes: 0 additions & 9 deletions pom.xml
Expand Up @@ -155,15 +155,6 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<proc>only</proc>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
</plugins>
</build>

Expand Down
15 changes: 14 additions & 1 deletion spring/pom.xml
Expand Up @@ -15,7 +15,7 @@
<version>0.1.0</version>

<properties>
<java.version>11</java.version>
<java.version>17</java.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -61,6 +61,19 @@
</dependencies>

<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<proc>only</proc>
<source>17</source>
<target>17</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
Expand Down

0 comments on commit 32b71d1

Please sign in to comment.