Skip to content

Commit

Permalink
Merge pull request #802 from navikt/bump-32
Browse files Browse the repository at this point in the history
bump to 3.2, add parameters option to compiler
  • Loading branch information
jan-olaveide authored Nov 29, 2023
2 parents 907d595 + 9b7d08c commit 4e3c487
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 21 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<java.version>17</java.version>
<spring-boot.version>3.1.6</spring-boot.version>
<spring-boot.version>3.2.0</spring-boot.version>
<oauth2-oidc-sdk.version>11.7</oauth2-oidc-sdk.version>
<validation-api.version>2.0.1.Final</validation-api.version>
<rest-assured.version>5.3.2</rest-assured.version>
Expand Down Expand Up @@ -453,4 +453,4 @@
<artifactId>nimbus-jose-jwt</artifactId>
</dependency>
</dependencies>
</project>
</project>
9 changes: 9 additions & 0 deletions token-client-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,15 @@
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerArgs>
<arg>-parameters</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
Expand Down
3 changes: 3 additions & 0 deletions token-client-spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
<configuration>
<javaParameters>true</javaParameters>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
24 changes: 5 additions & 19 deletions token-validation-spring-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,28 +43,14 @@
</dependencies>
<build>
<plugins>
<plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<parameters>true</parameters>
<compilerArgs>
<arg>-parameters</arg>
</compilerArgs>
</configuration>
<executions>
<execution>
<id>compile</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>testCompile</id>
<phase>test-compile</phase>
<goals>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -89,4 +75,4 @@
</build>
</profile>
</profiles>
</project>
</project>

0 comments on commit 4e3c487

Please sign in to comment.