This repository was archived by the owner on Mar 29, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +36
-17
lines changed
src/main/java/io/github/scordio/springframework/batch/extensions/notion Expand file tree Collapse file tree 5 files changed +36
-17
lines changed Original file line number Diff line number Diff line change 7
7
8
8
jobs :
9
9
10
+ java_17 :
11
+
12
+ name : Java 17
13
+ runs-on : ubuntu-latest
14
+
15
+ steps :
16
+ - uses : actions/checkout@v4
17
+ - name : Set up Java
18
+ uses : actions/setup-java@v3
19
+ with :
20
+ java-version : ' 17'
21
+ distribution : ' zulu'
22
+ cache : maven
23
+ - name : Test
24
+ run : ./mvnw $MAVEN_ARGS verify
25
+
10
26
java :
11
27
12
28
name : Java ${{ matrix.java }}
13
29
strategy :
14
30
fail-fast : false
15
31
matrix :
16
- java : [21, 22]
32
+ java : [22]
17
33
runs-on : ubuntu-latest
18
34
19
35
steps :
20
36
- uses : actions/checkout@v4
21
- - name : Setup Java
37
+ - name : Set up Java
22
38
uses : oracle-actions/setup-java@v1
23
39
with :
24
40
website : jdk.java.net
@@ -38,11 +54,11 @@ jobs:
38
54
39
55
steps :
40
56
- uses : actions/checkout@v4
41
- - name : Set up JDK 17
57
+ - name : Set up Java
42
58
uses : actions/setup-java@v3
43
59
with :
44
- java-version : ' 17 '
45
- distribution : ' temurin '
60
+ java-version : ' 21 '
61
+ distribution : ' zulu '
46
62
cache : maven
47
63
- name : Set Spring Boot ${{ matrix.spring }}
48
64
run : >
Original file line number Diff line number Diff line change 17
17
- name : Set up JDK 17
18
18
uses : actions/setup-java@v3
19
19
with :
20
- java-version : ' 17 '
21
- distribution : ' temurin '
20
+ java-version : ' 21 '
21
+ distribution : ' zulu '
22
22
cache : maven
23
23
- name : Update dependency graph
24
24
uses : advanced-security/maven-dependency-submission-action@v3
Original file line number Diff line number Diff line change 7
7
8
8
jobs :
9
9
10
- java_17 :
10
+ java_21 :
11
11
12
- name : Java 17
12
+ name : Java 21
13
13
runs-on : ubuntu-latest
14
14
15
15
steps :
16
16
- uses : actions/checkout@v4
17
- - name : Set up JDK 17
17
+ - name : Set up Java
18
18
uses : actions/setup-java@v3
19
19
with :
20
- java-version : ' 17 '
21
- distribution : ' temurin '
20
+ java-version : ' 21 '
21
+ distribution : ' zulu '
22
22
cache : maven
23
23
- name : Test
24
24
run : ./mvnw $MAVEN_ARGS verify
@@ -30,11 +30,11 @@ jobs:
30
30
31
31
steps :
32
32
- uses : actions/checkout@v4
33
- - name : Set up JDK 17
33
+ - name : Set up Java
34
34
uses : actions/setup-java@v3
35
35
with :
36
- java-version : ' 17 '
37
- distribution : ' temurin '
36
+ java-version : ' 21 '
37
+ distribution : ' zulu '
38
38
cache : maven
39
39
- name : Generate Javadoc
40
40
run : ./mvnw $MAVEN_ARGS javadoc:javadoc
Original file line number Diff line number Diff line change 19
19
- name : Set up Java
20
20
uses : actions/setup-java@v3
21
21
with :
22
- java-version : 17
23
- distribution : ' temurin '
22
+ java-version : ' 21 '
23
+ distribution : ' zulu '
24
24
25
25
- name : Publish to Maven Central
26
26
run : ./mvnw $MAVEN_ARGS -Prelease deploy
Original file line number Diff line number Diff line change @@ -127,6 +127,9 @@ private QuerySortDirection getQuerySortDirection() {
127
127
128
128
}
129
129
130
+ private Sort () {
131
+ }
132
+
130
133
abstract QuerySort toQuerySort ();
131
134
132
135
private static final class PropertySort extends Sort {
You can’t perform that action at this time.
0 commit comments