File tree 2 files changed +6
-3
lines changed
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 6
6
jobs :
7
7
test :
8
8
runs-on : ubuntu-latest
9
+ strategy :
10
+ matrix :
11
+ java-version : [11, 17, 21]
9
12
10
13
steps :
11
14
- uses : actions/checkout@v4
12
15
- uses : actions/setup-java@v4
13
16
with :
14
- java-version : " 11 "
17
+ java-version : ${{ matrix.java-version }}
15
18
distribution : " temurin"
16
19
cache : ' maven'
17
20
- name : Build with Maven
Original file line number Diff line number Diff line change 76
76
<slf4j .version>2.0.6</slf4j .version>
77
77
<logback .version>1.4.5</logback .version>
78
78
<junit .version>5.7.0</junit .version>
79
- <spotless .version>2.33.0</spotless .version>
80
79
<shade .plugin.version>3.4.1</shade .plugin.version>
81
80
<compiler .plugin.version>3.10.1</compiler .plugin.version>
82
81
<surefire .plugin.version>2.22.2</surefire .plugin.version>
82
+ <spotless .version>2.43.0</spotless .version>
83
83
</properties >
84
84
85
85
<distributionManagement >
243
243
<configuration >
244
244
<java >
245
245
<googleJavaFormat >
246
- <version >1.8 </version >
246
+ <version >1.22.0 </version >
247
247
<style >GOOGLE</style >
248
248
</googleJavaFormat >
249
249
<removeUnusedImports />
You can’t perform that action at this time.
0 commit comments