File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -14,10 +14,10 @@ jobs:
14
14
15
15
steps :
16
16
- uses : actions/checkout@v2
17
- - name : Set up JDK 1.8
17
+ - name : Set up JDK 11
18
18
uses : actions/setup-java@v1
19
19
with :
20
- java-version : 1.8
20
+ java-version : 11
21
21
server-id : github # Value of the distributionManagement/repository/id field of the pom.xml
22
22
settings-path : ${{ github.workspace }} # location for the settings.xml file
23
23
Original file line number Diff line number Diff line change @@ -16,10 +16,10 @@ jobs:
16
16
17
17
steps :
18
18
- uses : actions/checkout@v2
19
- - name : Set up JDK 1.8
19
+ - name : Set up JDK 11
20
20
uses : actions/setup-java@v1
21
21
with :
22
- java-version : 1.8
22
+ java-version : 11
23
23
- name : Build with Maven
24
24
run : mvn -B package --file pom.xml
25
25
env :
Original file line number Diff line number Diff line change 82
82
<artifactId >maven-compiler-plugin</artifactId >
83
83
<version >3.1</version >
84
84
<configuration >
85
- <source >1.8 </source >
86
- <target >1.8 </target >
85
+ <source >11 </source >
86
+ <target >11 </target >
87
87
<compilerArguments >
88
88
<endorseddirs >${endorsed.dir} </endorseddirs >
89
89
</compilerArguments >
You can’t perform that action at this time.
0 commit comments