-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update to latest j2cl and gwt and migrate to javs 11 #27
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,14 @@ jobs: | |
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Check out Git repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install Java and Maven | ||
uses: actions/setup-java@v3 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Change to:
|
||
with: | ||
java-version: 11 | ||
distribution: 'temurin' | ||
|
||
# TODO: cache dependencies (taking into accounts: Maven plugins, snapshots, etc.) | ||
|
||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. should we really push the .idea folder? |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,17 +46,16 @@ | |
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
|
||
<maven.compiler.source>1.8</maven.compiler.source> | ||
<maven.compiler.target>1.8</maven.compiler.target> | ||
<maven.compiler.source>11</maven.compiler.source> | ||
<maven.compiler.target>11</maven.compiler.target> | ||
|
||
<auto.common.version>1.1</auto.common.version> | ||
<auto.service.version>1.0</auto.service.version> | ||
<compile-testing.version>0.18</compile-testing.version> | ||
<gwt.version>2.9.0</gwt.version> | ||
<javapoet.version>1.12.1</javapoet.version> | ||
<compile.testing.version>0.18</compile.testing.version> | ||
<junit.version>4.13.1</junit.version> | ||
<org.truth.version>0.23</org.truth.version> | ||
<gwt.version>2.10.0</gwt.version> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Update to 2.11.0 |
||
<javapoet.version>1.13.0</javapoet.version> | ||
<compile.testing.version>0.21.0</compile.testing.version> | ||
<junit.version>4.13.2</junit.version> | ||
<org.truth.version>1.1.5</org.truth.version> | ||
<truth.version>1.0</truth.version> | ||
|
||
<maven.shade.plugin>3.2.4</maven.shade.plugin> | ||
|
@@ -110,16 +109,11 @@ | |
<version>${compile.testing.version}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.truth0</groupId> | ||
<artifactId>truth</artifactId> | ||
<version>${org.truth.version}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<!-- https://mvnrepository.com/artifact/com.google.truth/truth --> | ||
<dependency> | ||
<groupId>com.google.truth</groupId> | ||
<artifactId>truth</artifactId> | ||
<version>${truth.version}</version> | ||
<version>${org.truth.version}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
|
@@ -135,10 +129,8 @@ | |
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.6.1</version> | ||
<configuration> | ||
<source>${maven.compiler.source}</source> | ||
<target>${maven.compiler.target}</target> | ||
<release>11</release> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why not use the propertiy: maven.compiler.target? |
||
<showWarnings>true</showWarnings> | ||
<showDeprecation>true</showDeprecation> | ||
<meminitial>128m</meminitial> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Change to: