File tree Expand file tree Collapse file tree 4 files changed +20
-11
lines changed Expand file tree Collapse file tree 4 files changed +20
-11
lines changed Original file line number Diff line number Diff line change @@ -17,11 +17,11 @@ jobs:
17
17
with :
18
18
# Disabling shallow clone is recommended for improving relevancy of reporting with SonarCloud
19
19
fetch-depth : 0
20
- - name : Set up JDK 1.8
20
+ - name : Set up JDK 11
21
21
uses : actions/setup-java@v4
22
22
with :
23
- distribution : ' adopt '
24
- java-version : 8
23
+ distribution : ' temurin '
24
+ java-version : 11
25
25
- name : Build with Maven
26
26
run : mvn --show-version --no-transfer-progress verify --file pom.xml -Pcoverage,cloudbees-oss-release -Dgpg.skip=true
27
27
env :
@@ -32,11 +32,11 @@ jobs:
32
32
ZENDESK_JAVA_CLIENT_TEST_TOKEN : ${{ secrets.ZENDESK_JAVA_CLIENT_TEST_TOKEN }}
33
33
ZENDESK_JAVA_CLIENT_TEST_REQUESTER_EMAIL : ${{ secrets.ZENDESK_JAVA_CLIENT_TEST_REQUESTER_EMAIL }}
34
34
ZENDESK_JAVA_CLIENT_TEST_REQUESTER_NAME : ${{ secrets.ZENDESK_JAVA_CLIENT_TEST_REQUESTER_NAME }}
35
- - name : Set up JDK 11
35
+ - name : Set up JDK 17
36
36
uses : actions/setup-java@v4
37
37
with :
38
- distribution : ' adopt '
39
- java-version : 11
38
+ distribution : ' temurin '
39
+ java-version : 17
40
40
- name : Analyze with SonarQube
41
41
run : mvn --show-version --no-transfer-progress sonar:sonar --file pom.xml -Dsonar.organization=cloudbees -Dsonar.host.url=${SONAR_URL} -Dsonar.login=${SONAR_TOKEN}
42
42
env :
Original file line number Diff line number Diff line change @@ -17,11 +17,11 @@ jobs:
17
17
with :
18
18
# Disabling shallow clone is recommended for improving relevancy of reporting with SonarCloud
19
19
fetch-depth : 0
20
- - name : Set up JDK 1.8
20
+ - name : Set up JDK 11
21
21
uses : actions/setup-java@v4
22
22
with :
23
- distribution : ' adopt '
24
- java-version : 8
23
+ distribution : ' temurin '
24
+ java-version : 11
25
25
- name : Build with Maven
26
26
run : mvn --show-version --no-transfer-progress verify --file pom.xml -Pcoverage,cloudbees-oss-release -Dgpg.skip=true
27
27
env :
Original file line number Diff line number Diff line change @@ -89,6 +89,15 @@ Here is the status of the various API components:
89
89
* [ Suspended Tickets] ( https://developer.zendesk.com/api-reference/ticketing/tickets/suspended_tickets/ )
90
90
* [ Triggers] ( https://developer.zendesk.com/api-reference/ticketing/business-rules/triggers/ ) ✓
91
91
92
+ JDK Support
93
+ ------
94
+
95
+ The current version of this project supports Java 11 and above.
96
+ It is built on Java 11 and Java 17.
97
+ The release is built using Java 11.
98
+
99
+ Latest version supporting Java 8: 0.24.3 (https://github.com/cloudbees-oss/zendesk-java-client/releases/tag/zendesk-java-client-0.24.3 ).
100
+
92
101
History
93
102
-------
94
103
Original file line number Diff line number Diff line change 89
89
</ciManagement >
90
90
91
91
<properties >
92
- <maven .compiler.source>1.8 </maven .compiler.source>
93
- <maven .compiler.target>1.8 </maven .compiler.target>
92
+ <maven .compiler.source>11 </maven .compiler.source>
93
+ <maven .compiler.target>11 </maven .compiler.target>
94
94
<spotless .version>2.30.0</spotless .version>
95
95
</properties >
96
96
You can’t perform that action at this time.
0 commit comments