Skip to content

Commit 911ca8e

Browse files
committed
Test
1 parent 300590e commit 911ca8e

File tree

3 files changed

+28
-6
lines changed

3 files changed

+28
-6
lines changed

.github/workflows/Continuous.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@v4
17-
- name: Set up JDK 22 for x64
17+
- name: Set up JDK 21
1818
uses: actions/setup-java@v4
1919
with:
20-
java-version: '22'
20+
java-version: '21'
2121
distribution: 'temurin'
2222
cache: maven
2323
- name: Run the Maven verify phase
24-
run: mvn --batch-mode --update-snapshots verify
24+
run: mvn clean test verify -X -e --update-snapshots
2525
- run: mkdir staging && cp target/*.jar staging
2626
- uses: actions/upload-artifact@v4
2727
with:

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pom.xml

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
<version>0.1.0-SNAPSHOT</version>
1010

1111
<properties>
12-
<maven.compiler.source>22</maven.compiler.source>
13-
<maven.compiler.target>22</maven.compiler.target>
12+
<maven.compiler.source>21</maven.compiler.source>
13+
<maven.compiler.target>21</maven.compiler.target>
1414
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1515
</properties>
1616

@@ -54,4 +54,26 @@
5454
<scope>test</scope>
5555
</dependency>
5656
</dependencies>
57+
58+
<build>
59+
<pluginManagement>
60+
<plugins>
61+
<plugin>
62+
<groupId>org.apache.maven.plugins</groupId>
63+
<artifactId>maven-clean-plugin</artifactId>
64+
<version>3.2.0</version>
65+
</plugin>
66+
<plugin>
67+
<groupId>org.apache.maven.surefire</groupId>
68+
<artifactId>surefire</artifactId>
69+
<version>3.2.5</version>
70+
</plugin>
71+
<plugin>
72+
<groupId>org.apache.maven.plugins</groupId>
73+
<artifactId>maven-compiler-plugin</artifactId>
74+
<version>3.13.0</version>
75+
</plugin>
76+
</plugins>
77+
</pluginManagement>
78+
</build>
5779
</project>

0 commit comments

Comments
 (0)