Skip to content

Commit

Permalink
Update to GWT 2.11.0
Browse files Browse the repository at this point in the history
Remove testing with the com.google.gwt groupId.
  • Loading branch information
tbroyer committed Jan 24, 2024
1 parent 680bc45 commit aba32f1
Show file tree
Hide file tree
Showing 14 changed files with 31 additions and 38 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,12 +117,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
# groupId depends on GWT version, so no need to use it in cache keys and other identifiers
include:
- gwt: "2.9.0"
groupId: "com.google.gwt"
- gwt: "HEAD-SNAPSHOT"
groupId: "org.gwtproject"
gwt: ["2.10.0", "HEAD-SNAPSHOT"]
continue-on-error: ${{ matrix.gwt == 'HEAD-SNAPSHOT' }}
steps:
- uses: actions/checkout@v4
Expand All @@ -146,7 +141,7 @@ jobs:
- name: Build with Maven
id: maven-build
run: mvn -B -U -ntp verify --fail-at-end -DgwtVersion=${{ matrix.gwt }} -DgwtGroupId=${{ matrix.groupId }}
run: mvn -B -U -ntp verify --fail-at-end -DgwtVersion=${{ matrix.gwt }}

- name: Store reports
if: always() && (steps.maven-build.outcome == 'success' || steps.maven-build.outcome == 'failure')
Expand Down
10 changes: 4 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,7 @@
<project.build.outputEncoding>UTF-8</project.build.outputEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<gwtGroupId>org.gwtproject</gwtGroupId>
<gwtVersion>2.10.0</gwtVersion>
<gwtVersion>2.11.0</gwtVersion>
</properties>

<dependencies>
Expand Down Expand Up @@ -182,19 +181,19 @@
<!-- Some artifacts used by invoker tests, declared here so they're resolved early -->
<!-- Actually because invoker plugin cannot install snapshots through extraArtifacts -->
<dependency>
<groupId>${gwtGroupId}</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt-user</artifactId>
<version>${gwtVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${gwtGroupId}</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt-dev</artifactId>
<version>${gwtVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${gwtGroupId}</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt-servlet</artifactId>
<version>${gwtVersion}</version>
<scope>test</scope>
Expand Down Expand Up @@ -260,7 +259,6 @@
<localRepositoryPath>${project.build.directory}/it-repo</localRepositoryPath>
<settingsFile>src/it/settings.xml</settingsFile>
<filterProperties>
<gwtGroupId>${gwtGroupId}</gwtGroupId>
<gwtVersion>${gwtVersion}</gwtVersion>
</filterProperties>
<extraArtifacts>
Expand Down
4 changes: 2 additions & 2 deletions src/it/e2e/e2e-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
<type>gwt-lib</type>
</dependency>
<dependency>
<groupId>@gwtGroupId@</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt-user</artifactId>
</dependency>
<dependency>
<groupId>@gwtGroupId@</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt-dev</artifactId>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion src/it/e2e/e2e-model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<dependencies>
<dependency>
<groupId>@gwtGroupId@</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt-servlet</artifactId>
<!-- Needed for the CustomFieldSerializer; can be provided by gwt-servlet or gwt-user -->
<scope>provided</scope>
Expand Down
2 changes: 1 addition & 1 deletion src/it/e2e/e2e-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>@gwtGroupId@</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt-servlet</artifactId>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion src/it/e2e/e2e-shared-gwt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<type>gwt-lib</type>
</dependency>
<dependency>
<groupId>@gwtGroupId@</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt-servlet</artifactId>
<scope>provided</scope>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion src/it/e2e/e2e-shared/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>@gwtGroupId@</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt-servlet</artifactId>
<scope>provided</scope>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion src/it/e2e/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<dependencyManagement>
<dependencies>
<dependency>
<groupId>@gwtGroupId@</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt</artifactId>
<version>@gwtVersion@</version>
<type>pom</type>
Expand Down
6 changes: 3 additions & 3 deletions src/it/forceCompilation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<dependencyManagement>
<dependencies>
<dependency>
<groupId>@gwtGroupId@</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt</artifactId>
<version>@gwtVersion@</version>
<type>pom</type>
Expand All @@ -20,11 +20,11 @@
</dependencyManagement>
<dependencies>
<dependency>
<groupId>@gwtGroupId@</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt-user</artifactId>
</dependency>
<dependency>
<groupId>@gwtGroupId@</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt-dev</artifactId>
</dependency>
</dependencies>
Expand Down
6 changes: 3 additions & 3 deletions src/it/gwt-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<dependencyManagement>
<dependencies>
<dependency>
<groupId>@gwtGroupId@</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt</artifactId>
<version>@gwtVersion@</version>
<type>pom</type>
Expand All @@ -20,11 +20,11 @@
</dependencyManagement>
<dependencies>
<dependency>
<groupId>@gwtGroupId@</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt-user</artifactId>
</dependency>
<dependency>
<groupId>@gwtGroupId@</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt-dev</artifactId>
</dependency>
<dependency>
Expand Down
6 changes: 3 additions & 3 deletions src/it/gwt-lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<dependencyManagement>
<dependencies>
<dependency>
<groupId>@gwtGroupId@</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt</artifactId>
<version>@gwtVersion@</version>
<type>pom</type>
Expand All @@ -20,11 +20,11 @@
</dependencyManagement>
<dependencies>
<dependency>
<groupId>@gwtGroupId@</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt-user</artifactId>
</dependency>
<dependency>
<groupId>@gwtGroupId@</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt-dev</artifactId>
</dependency>
<dependency>
Expand Down
6 changes: 3 additions & 3 deletions src/it/skipCompilation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<dependencyManagement>
<dependencies>
<dependency>
<groupId>@gwtGroupId@</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt</artifactId>
<version>@gwtVersion@</version>
<type>pom</type>
Expand All @@ -20,11 +20,11 @@
</dependencyManagement>
<dependencies>
<dependency>
<groupId>@gwtGroupId@</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt-user</artifactId>
</dependency>
<dependency>
<groupId>@gwtGroupId@</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt-dev</artifactId>
</dependency>
</dependencies>
Expand Down
6 changes: 3 additions & 3 deletions src/it/staleness-check-2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<dependencyManagement>
<dependencies>
<dependency>
<groupId>@gwtGroupId@</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt</artifactId>
<version>@gwtVersion@</version>
<type>pom</type>
Expand All @@ -20,11 +20,11 @@
</dependencyManagement>
<dependencies>
<dependency>
<groupId>@gwtGroupId@</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt-user</artifactId>
</dependency>
<dependency>
<groupId>@gwtGroupId@</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt-dev</artifactId>
</dependency>
</dependencies>
Expand Down
6 changes: 3 additions & 3 deletions src/it/staleness-check/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<dependencyManagement>
<dependencies>
<dependency>
<groupId>@gwtGroupId@</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt</artifactId>
<version>@gwtVersion@</version>
<type>pom</type>
Expand All @@ -20,11 +20,11 @@
</dependencyManagement>
<dependencies>
<dependency>
<groupId>@gwtGroupId@</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt-user</artifactId>
</dependency>
<dependency>
<groupId>@gwtGroupId@</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt-dev</artifactId>
</dependency>
</dependencies>
Expand Down

0 comments on commit aba32f1

Please sign in to comment.