Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/setup-java@v5
with:
distribution: 'corretto'
java-version: '11'
java-version: '17'
- name: Verify
run: ./mvnw -B -ntp clean verify -DskipTests -Dgpg.skip=true

Expand All @@ -28,7 +28,7 @@ jobs:
- uses: actions/setup-java@v5
with:
distribution: 'corretto'
java-version: '11'
java-version: '17'
- name: Run Tests
run: ./mvnw -B -ntp test -Ddocker.tests=true

Expand All @@ -42,7 +42,7 @@ jobs:
- uses: actions/setup-java@v5
with:
distribution: 'corretto'
java-version: '11'
java-version: '17'
- name: Run Tests
run: ./mvnw -B -ntp test

Expand All @@ -54,6 +54,6 @@ jobs:
- uses: actions/setup-java@v5
with:
distribution: 'corretto'
java-version: '11'
java-version: '17'
- name: Run Tests
run: ./mvnw.cmd -B -ntp test
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- uses: actions/setup-java@v5
with:
distribution: 'corretto'
java-version: '11'
java-version: '17'
- name: Grant Permission
run: chmod +x ./mvnw
- name: Compile and API compatibility check
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- uses: actions/setup-java@v5
with:
distribution: 'corretto'
java-version: '11'
java-version: '17'

- name: Grant Permission
run: chmod +x ./mvnw
Expand Down
8 changes: 3 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,7 @@
</licenses>

<properties>
<java.version>11</java.version>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<java.version>17</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<netty.version>4.2.15.Final</netty.version>
Expand Down Expand Up @@ -303,8 +301,6 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.15.0</version>
<configuration>
<source>11</source>
<target>11</target>
<encoding>UTF-8</encoding>
<compilerArgs>
<arg>-XDcompilePolicy=simple</arg>
Expand Down Expand Up @@ -338,6 +334,7 @@
<version>${nullaway.version}</version>
</path>
</annotationProcessorPaths>
<release>${java.version}</release>
</configuration>
</plugin>

Expand Down Expand Up @@ -544,6 +541,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.15.0</version>
<configuration>
<compilerArgs combine.children="append">
<arg>--should-stop=ifError=FLOW</arg>
Expand Down