File tree Expand file tree Collapse file tree 6 files changed +18
-30
lines changed Expand file tree Collapse file tree 6 files changed +18
-30
lines changed Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ jobs:
10
10
- name : Download repository
11
11
uses : actions/checkout@v2
12
12
13
- - name : Set up JDK 9
13
+ - name : Set up JDK 11
14
14
uses : actions/setup-java@v1
15
15
with :
16
- java-version : 9
16
+ java-version : 11
17
17
18
18
- name : Set up Maven
19
19
uses : stCarolas/setup-maven@v4
30
30
if : ${{ always() }}
31
31
run : |
32
32
tail -n 500 maven-install-output.txt
33
- tail -n 500 target/it-tests/junit-test/build.log
34
33
tail -n 500 target/it-tests/gwt-jar-test/build.log
35
- tail -n 500 target/it-tests/timezone-test/build.log
36
34
37
35
- uses : actions/upload-artifact@v4
38
36
if : failure()
46
44
name : gwt-jar-test-build.log
47
45
path : target/it-tests/gwt-jar-test/build.log
48
46
49
- - uses : actions/upload-artifact@v4
50
- if : failure()
51
- with :
52
- name : junit-test-build.log
53
- path : target/it-tests/junit-test/build.log
54
-
55
- - uses : actions/upload-artifact@v4
56
- if : failure()
57
- with :
58
- name : timezone-test-build.log
59
- path : target/it-tests/timezone-test/build.log
60
47
61
48
Original file line number Diff line number Diff line change 9
9
10
10
<properties >
11
11
<gwt-version >2.11.0</gwt-version >
12
- <maven .compiler.source>1.9 </maven .compiler.source>
13
- <maven .compiler.target>1.9 </maven .compiler.target>
12
+ <maven .compiler.source>11 </maven .compiler.source>
13
+ <maven .compiler.target>11 </maven .compiler.target>
14
14
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
15
15
</properties >
16
16
113
113
<artifactId >maven-compiler-plugin</artifactId >
114
114
<version >3.8.0</version >
115
115
<configuration >
116
- <source >9 </source >
117
- <target >9 </target >
116
+ <source >11 </source >
117
+ <target >11 </target >
118
118
<compilerArgs >
119
119
<arg >-Awalkingkooka.j2cl.java.util.Currency=XXX</arg >
120
120
<arg >-Awalkingkooka.j2cl.java.util.Locale=,EN-AU,EN-US</arg >
Original file line number Diff line number Diff line change 114
114
115
115
<!-- ==================================================================== -->
116
116
<properties >
117
- <maven .compiler.source>1.9 </maven .compiler.source>
118
- <maven .compiler.target>1.9 </maven .compiler.target>
117
+ <maven .compiler.source>11 </maven .compiler.source>
118
+ <maven .compiler.target>11 </maven .compiler.target>
119
119
<maven-install-plugin .version>2.5.2</maven-install-plugin .version>
120
120
<maven-resources-plugin .version>3.1.0</maven-resources-plugin .version>
121
121
<maven-surefire-plugin .version>2.22.1</maven-surefire-plugin .version>
263
263
<artifactId >maven-compiler-plugin</artifactId >
264
264
<version >3.8.0</version >
265
265
<configuration >
266
- <source >9 </source >
267
- <target >9 </target >
266
+ <source >11 </source >
267
+ <target >11 </target >
268
268
<compilerArgs >
269
269
<arg >-Awalkingkooka.j2cl.java.util.Currency=XXX</arg >
270
270
<arg >-Awalkingkooka.j2cl.java.util.Locale=,EN-AU,EN-US</arg >
419
419
<cloneProjectsTo >${project.build.directory} /it-tests</cloneProjectsTo >
420
420
<debug >true</debug >
421
421
<invokerPropertiesFile >src/it/invoker.properties</invokerPropertiesFile >
422
+ <invokerTest >gwt-jar-test</invokerTest >
422
423
<localRepositoryPath >${project.build.directory} /it-repo</localRepositoryPath >
423
424
<settingsFile >src/it/settings.xml</settingsFile >
424
425
<streamLogs >false</streamLogs >
Original file line number Diff line number Diff line change 42
42
<artifactId >maven-compiler-plugin</artifactId >
43
43
<version >3.8.0</version >
44
44
<configuration >
45
- <source >9 </source >
46
- <target >9 </target >
45
+ <source >11 </source >
46
+ <target >11 </target >
47
47
<annotationProcessorPaths >
48
48
<path >
49
49
<groupId >walkingkooka</groupId >
86
86
<configuration >
87
87
<failOnError >true</failOnError >
88
88
<moduleName >test.Test</moduleName >
89
- <sourceLevel >1.9 </sourceLevel >
89
+ <sourceLevel >11 </sourceLevel >
90
90
<logLevel >DEBUG</logLevel >
91
91
<style >PRETTY</style >
92
92
<!--
Original file line number Diff line number Diff line change 34
34
<inceptionYear >2020</inceptionYear >
35
35
36
36
<properties >
37
- <maven .compiler.source>1.9 </maven .compiler.source>
38
- <maven .compiler.target>1.9 </maven .compiler.target>
37
+ <maven .compiler.source>11 </maven .compiler.source>
38
+ <maven .compiler.target>11 </maven .compiler.target>
39
39
<maven .compiler.plugin>3.7.0</maven .compiler.plugin>
40
40
41
41
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
Original file line number Diff line number Diff line change 17
17
<inceptionYear >2020</inceptionYear >
18
18
19
19
<properties >
20
- <maven .compiler.source>1.9 </maven .compiler.source>
21
- <maven .compiler.target>1.9 </maven .compiler.target>
20
+ <maven .compiler.source>11 </maven .compiler.source>
21
+ <maven .compiler.target>11 </maven .compiler.target>
22
22
<maven .compiler.plugin>3.7.0</maven .compiler.plugin>
23
23
24
24
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
You can’t perform that action at this time.
0 commit comments