Hi guys,
I've got a problem with my gradle configuration that until yesterday it worked.
Today I've got this error:
Could not resolve: org.fusesource.restygwt:restygwt:2.+
My gradle version is 4.3.1 and my configuration for RestyGWT is:
...
compile (group: 'org.fusesource.restygwt', name: 'restygwt', version: '2.+') {
exclude group: 'com.google.gwt'
}
...
If I use this conf, with the specific RestyGWT version, it works fine:
...
compile (group: 'org.fusesource.restygwt', name: 'restygwt', version: '2.2.4') {
exclude group: 'com.google.gwt'
}
...
Thank you in advance for your help,
Fabio