Skip to content

Commit 74bdaa2

Browse files
authored
Use Java 21 in CI, POM cleanup (#242)
1 parent a85f106 commit 74bdaa2

File tree

3 files changed

+10
-16
lines changed

3 files changed

+10
-16
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
uses: actions/setup-java@v4
1919
with:
2020
distribution: 'zulu'
21-
java-version: '17'
21+
java-version: '21'
2222
cache: 'maven'
2323
- name: Test
2424
run: ./mvnw $MAVEN_ARGS verify
@@ -35,7 +35,7 @@ jobs:
3535
uses: actions/setup-java@v4
3636
with:
3737
distribution: 'zulu'
38-
java-version: '17'
38+
java-version: '21'
3939
cache: 'maven'
4040
- name: Test with Sonar
4141
run: >

licence-header.txt

Lines changed: 0 additions & 10 deletions
This file was deleted.

pom.xml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,20 @@
99
</parent>
1010

1111
<artifactId>assertj-assertions-generator</artifactId>
12-
<version>2.2.2-SNAPSHOT</version>
12+
<version>3.0.0-SNAPSHOT</version>
1313

1414
<name>AssertJ Assertions Generator</name>
1515

1616
<scm>
17-
<developerConnection>scm:git:git@github.com:joel-costigliola/assertj-assertions-generator.git</developerConnection>
18-
<connection>scm:git:git@github.com:joel-costigliola/assertj-assertions-generator.git</connection>
19-
<url>git@github.com:joel-costigliola/assertj-assertions-generator</url>
17+
<developerConnection>scm:git:https://github.com/assertj/assertj-assertions-generator.git</developerConnection>
18+
<connection>scm:git:https://github.com/assertj/assertj-assertions-generator.git</connection>
19+
<url>https://github.com/assertj/assertj-assertions-generator</url>
2020
<tag>HEAD</tag>
2121
</scm>
22+
<issueManagement>
23+
<system>GitHub</system>
24+
<url>https://github.com/assertj/assertj-assertions-generator/issues</url>
25+
</issueManagement>
2226

2327
<properties>
2428
<maven.compiler.release>17</maven.compiler.release>

0 commit comments

Comments
 (0)