Skip to content

Commit

Permalink
[MDEP-898] - Upgrade to JDK11+ build requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
khmarbaise committed Nov 13, 2023
1 parent 3ee528d commit bf3fc52
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ jobs:
name: Verify
uses: apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml@v3
with:
jdk-matrix: '[ "8", "11", "17", "20" ]'
jdk-matrix: '[ "11", "17", "20", "21" ]'
15 changes: 14 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ under the License.
<parent>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugins</artifactId>
<version>40</version>
<version>41</version>
<relativePath />
</parent>

Expand Down Expand Up @@ -87,6 +87,7 @@ under the License.
</distributionManagement>

<properties>
<maven.compiler.release>8</maven.compiler.release>
<mavenVersion>3.2.5</mavenVersion>
<jettyVersion>9.4.53.v20231009</jettyVersion>
<pluginTestingVersion>3.3.0</pluginTestingVersion>
Expand Down Expand Up @@ -363,6 +364,18 @@ under the License.
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>com.diffplug.spotless</groupId>
<artifactId>spotless-maven-plugin</artifactId>
<configuration>
<java>
<palantirJavaFormat combine.self="override">
<version>2.38.0</version>
</palantirJavaFormat>
</java>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
Expand Down

0 comments on commit bf3fc52

Please sign in to comment.