Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
- name: Download repository
uses: actions/checkout@v2

- name: Set up JDK 9
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 9
java-version: 11

- name: Set up Maven
uses: stCarolas/setup-maven@v4
Expand All @@ -29,14 +29,14 @@ jobs:
- name: Print logs
if: ${{ always() }}
run: |
tail -n 500 target/it-tests/junit-test/build.log
tail -n 500 target/it-tests/gwt-jar-test/build.log
tail -n 500 output.txt

- uses: actions/upload-artifact@v4
if: failure()
with:
name: build.log
path: target/it-tests/junit-test/build.log
name: it-tests-gwt-jar-test-build.log
path: target/it-tests/gwt-jar-test/build.log

- uses: actions/upload-artifact@v4
if: failure()
Expand Down
8 changes: 4 additions & 4 deletions gwt-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

<properties>
<gwt-version>2.11.0</gwt-version>
<maven.compiler.source>1.9</maven.compiler.source>
<maven.compiler.target>1.9</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

Expand Down Expand Up @@ -84,8 +84,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>9</source>
<target>9</target>
<source>11</source>
<target>11</target>
<compilerArgs>
<arg>-Awalkingkooka.j2cl.java.util.Currency=XXX</arg>
<arg>-Awalkingkooka.j2cl.java.util.Locale=,EN-AU,EN-US</arg>
Expand Down
9 changes: 5 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
<version>1.0-SNAPSHOT</version>

<properties>
<maven.compiler.source>1.9</maven.compiler.source>
<maven.compiler.target>1.9</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

Expand Down Expand Up @@ -123,8 +123,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>9</source>
<target>9</target>
<source>11</source>
<target>11</target>
<compilerArgs>
<arg>-Awalkingkooka.j2cl.java.util.Currency=XXX</arg>
<arg>-Awalkingkooka.j2cl.java.util.Locale=*</arg>
Expand Down Expand Up @@ -253,6 +253,7 @@
<cloneProjectsTo>${project.build.directory}/it-tests</cloneProjectsTo>
<debug>true</debug>
<invokerPropertiesFile>src/it/invoker.properties</invokerPropertiesFile>
<invokerTest>gwt-jar-test</invokerTest>
<localRepositoryPath>${project.build.directory}/it-repo</localRepositoryPath>
<settingsFile>src/it/settings.xml</settingsFile>
<streamLogs>false</streamLogs>
Expand Down
6 changes: 3 additions & 3 deletions src/it/gwt-jar-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>9</source>
<target>9</target>
<source>11</source>
<target>11</target>
<annotationProcessorPaths>
<path>
<groupId>walkingkooka</groupId>
Expand Down Expand Up @@ -85,7 +85,7 @@
<configuration>
<failOnError>true</failOnError>
<moduleName>test.Test</moduleName>
<sourceLevel>1.9</sourceLevel>
<sourceLevel>11</sourceLevel>
<logLevel>DEBUG</logLevel>
<style>PRETTY</style>
<!-- If assertions are enabled, Compiler will fail when building AST tree-->
Expand Down
8 changes: 4 additions & 4 deletions src/it/junit-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
<inceptionYear>2020</inceptionYear>

<properties>
<maven.compiler.source>1.9</maven.compiler.source>
<maven.compiler.target>1.9</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.plugin>3.7.0</maven.compiler.plugin>

<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -53,8 +53,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>9</source>
<target>9</target>
<source>11</source>
<target>11</target>
<compilerArgs>
<arg>-Awalkingkooka.j2cl.java.util.Currency=XXX</arg>
<arg>-Awalkingkooka.j2cl.java.util.Locale=EN-AU</arg>
Expand Down