File tree 5 files changed +18
-16
lines changed
5 files changed +18
-16
lines changed Original file line number Diff line number Diff line change 6
6
test :
7
7
strategy :
8
8
matrix :
9
- java : [1.8, 11, 16 ]
9
+ java : [11, 17, 21 ]
10
10
runs-on : ubuntu-latest
11
11
steps :
12
- - uses : actions/checkout@v1
12
+ - uses : actions/checkout@v4
13
13
- name : Set up Java
14
- uses : actions/setup-java@v1
14
+ uses : actions/setup-java@v4
15
15
with :
16
+ distribution : ' temurin'
16
17
java-version : ${{ matrix.java }}
17
18
- name : Maven Test
18
19
run : ./mvnw clean test
19
20
deploy :
20
21
needs : test
21
22
runs-on : ubuntu-latest
22
23
steps :
23
- - uses : actions/checkout@v1
24
- - name : Set up Java 1.8
25
- uses : actions/setup-java@v1
24
+ - uses : actions/checkout@v4
25
+ - name : Set up Java 11
26
+ uses : actions/setup-java@v4
26
27
with :
27
- java-version : 1.8
28
+ distribution : ' temurin'
29
+ java-version : 11
28
30
- name : Deploy to Sonatype
29
31
run : ./mvnw -B -Drepo.username=${{secrets.SONATYPE_USERNAME}} -Drepo.password=${{secrets.SONATYPE_PASSWORD}} clean deploy -DskipTests=true --settings mySettings.xml
Original file line number Diff line number Diff line change 45
45
46
46
<properties >
47
47
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
48
- <spring .version>5.3.23 </spring .version>
48
+ <spring .version>5.3.26 </spring .version>
49
49
<spring .boot.version>2.7.5</spring .boot.version>
50
50
<jackson .version>2.16.1</jackson .version>
51
51
<jackson-dataformat .version>2.16.1</jackson-dataformat .version>
76
76
<version >3.6.0</version >
77
77
<configuration >
78
78
<links >
79
- <link >https://docs.spring.io/spring-framework/docs/5.3.23 /javadoc-api/</link >
79
+ <link >https://docs.spring.io/spring-framework/docs/5.3.26 /javadoc-api/</link >
80
80
<link >http://docs.oracle.com/javase/8/docs/api/</link >
81
81
</links >
82
82
<additionalOptions >-Xdoclint:none</additionalOptions >
144
144
<plugin >
145
145
<groupId >org.apache.maven.plugins</groupId >
146
146
<artifactId >maven-clean-plugin</artifactId >
147
- <version >3.3.1 </version >
147
+ <version >3.3.2 </version >
148
148
</plugin >
149
149
150
150
<plugin >
Original file line number Diff line number Diff line change 65
65
<dependency >
66
66
<groupId >org.assertj</groupId >
67
67
<artifactId >assertj-core</artifactId >
68
- <version >3.25.2 </version >
68
+ <version >3.25.3 </version >
69
69
<scope >test</scope >
70
70
</dependency >
71
71
86
86
<dependency >
87
87
<groupId >nl.jqno.equalsverifier</groupId >
88
88
<artifactId >equalsverifier</artifactId >
89
- <version >3.15.6 </version >
89
+ <version >3.15.7 </version >
90
90
<scope >test</scope >
91
91
</dependency >
92
92
Original file line number Diff line number Diff line change 34
34
<dependency >
35
35
<groupId >org.assertj</groupId >
36
36
<artifactId >assertj-core</artifactId >
37
- <version >3.25.2 </version >
37
+ <version >3.25.3 </version >
38
38
<scope >test</scope >
39
39
</dependency >
40
40
83
83
<dependency >
84
84
<groupId >nl.jqno.equalsverifier</groupId >
85
85
<artifactId >equalsverifier</artifactId >
86
- <version >3.15.6 </version >
86
+ <version >3.15.7 </version >
87
87
<scope >test</scope >
88
88
</dependency >
89
89
Original file line number Diff line number Diff line change 47
47
<dependency >
48
48
<groupId >org.assertj</groupId >
49
49
<artifactId >assertj-core</artifactId >
50
- <version >3.25.2 </version >
50
+ <version >3.25.3 </version >
51
51
<scope >test</scope >
52
52
</dependency >
53
53
82
82
<dependency >
83
83
<groupId >nl.jqno.equalsverifier</groupId >
84
84
<artifactId >equalsverifier</artifactId >
85
- <version >3.15.6 </version >
85
+ <version >3.15.7 </version >
86
86
<scope >test</scope >
87
87
</dependency >
88
88
You can’t perform that action at this time.
0 commit comments