diff --git a/.github/build.yml b/.github/build.yml
new file mode 100644
index 0000000..00d6ea5
--- /dev/null
+++ b/.github/build.yml
@@ -0,0 +1,26 @@
+# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
+# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
+
+name: Java CI with Maven
+
+on:
+ push:
+ branches: [ "master" ]
+ pull_request:
+ branches: [ "master" ]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v3
+ - name: Set up JDK 11
+ uses: actions/setup-java@v3
+ with:
+ java-version: '11'
+ distribution: 'temurin'
+ cache: maven
+ - name: Build with Maven
+ run: mvn -B package --file pom.xml
diff --git a/README.md b/README.md
index d2bf5ef..fd13842 100644
--- a/README.md
+++ b/README.md
@@ -45,7 +45,7 @@ public class MyWidget extends Composite {
public MyWidget(NumberFormatter formatter) {
this.formatter = formatter;
- initWidget(uiBinder.createAndBindUi(this);
+ initWidget(uiBinder.createAndBindUi(this));
}
void setNumber(int number) {
@@ -247,6 +247,9 @@ to manually install the jars for [Mockito][6] and [Javassist][7].
## Version history
+### 1.2.0 [Unreleased]
+ * Use GWT 2.10.0 with relocated groupId
+
### 1.1.9
* Support ResourcePrototype methods in fake CLientBundles. (Thanks to zbynek)
* Add a `@WithExperimentalGarbageCollection` annotation. (Thanks to LudoP)
diff --git a/gwtmockito-sample/pom.xml b/gwtmockito-sample/pom.xml
index 0d1797a..6627919 100644
--- a/gwtmockito-sample/pom.xml
+++ b/gwtmockito-sample/pom.xml
@@ -3,7 +3,7 @@
com.google.gwt.gwtmockito
gwtmockito-parent
- 1.1.10-SNAPSHOT
+ 1.2.0-SNAPSHOT
gwtmockito-sample
@@ -12,7 +12,7 @@
- com.google.gwt
+ org.gwtproject
gwt-user
diff --git a/gwtmockito/pom.xml b/gwtmockito/pom.xml
index 0d1cde4..db6df92 100644
--- a/gwtmockito/pom.xml
+++ b/gwtmockito/pom.xml
@@ -3,7 +3,7 @@
com.google.gwt.gwtmockito
gwtmockito-parent
- 1.1.10-SNAPSHOT
+ 1.2.0-SNAPSHOT
gwtmockito
@@ -14,11 +14,11 @@
- com.google.gwt
+ org.gwtproject
gwt-dev
- com.google.gwt
+ org.gwtproject
gwt-user
diff --git a/pom.xml b/pom.xml
index 09a0731..37efbe9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -2,7 +2,7 @@
4.0.0
com.google.gwt.gwtmockito
gwtmockito-parent
- 1.1.10-SNAPSHOT
+ 1.2.0-SNAPSHOT
pom
GwtMockito (Parent)
@@ -55,20 +55,20 @@
- com.google.gwt
+ org.gwtproject
gwt-dev
- 2.8.0
+ 2.10.0
- com.google.gwt
+ org.gwtproject
gwt-user
- 2.8.0
+ 2.10.0
junit
junit
- 4.13.1
+ 4.13.2
org.mockito
@@ -93,7 +93,7 @@
org.powermock
powermock-api-mockito
- 1.6.6
+ 1.7.4
test