Skip to content

Commit

Permalink
Use Java 21 in CI, POM cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
scordio committed Oct 16, 2024
1 parent a85f106 commit d1f83b0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 16 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17'
java-version: '21'
cache: 'maven'
- name: Test
run: ./mvnw $MAVEN_ARGS verify
Expand All @@ -35,7 +35,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17'
java-version: '21'
cache: 'maven'
- name: Test with Sonar
run: >
Expand Down
10 changes: 0 additions & 10 deletions licence-header.txt

This file was deleted.

12 changes: 8 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,20 @@
</parent>

<artifactId>assertj-assertions-generator</artifactId>
<version>2.2.2-SNAPSHOT</version>
<version>3.0.0-SNAPSHOT</version>

<name>AssertJ Assertions Generator</name>

<scm>
<developerConnection>scm:git:git@github.com:joel-costigliola/assertj-assertions-generator.git</developerConnection>
<connection>scm:git:git@github.com:joel-costigliola/assertj-assertions-generator.git</connection>
<url>git@github.com:joel-costigliola/assertj-assertions-generator</url>
<developerConnection>scm:git:https://github.com/assertj/assertj-assertions-generator.git</developerConnection>
<connection>scm:git:https://github.com/assertj/assertj-assertions-generator.git</connection>
<url>https://github.com/assertj/assertj-assertions-generator</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/assertj/assertj-assertions-generator/issues</url>
</issueManagement>

<properties>
<maven.compiler.release>17</maven.compiler.release>
Expand Down

0 comments on commit d1f83b0

Please sign in to comment.