Important Notice - Forums is archived
To simplify things and help our users to be more productive, we have archived the current forum and focus our efforts on helping developers on Stack Overflow. You can post new questions on Stack Overflow or join our Discord channel.

Vaadin lets you build secure, UX-first PWAs entirely in Java.
Free ebook & tutorial.
Vaadin-gradle stopped working a few days ago
I have been using Vaadin-gradle successfully for a very long time, but a few days ago it just stopped working with the following error:
Unknown host 'mvn.jasoft.fi'. you may need to adjust the proxy settings in Gradle.
I tried to upgrade from 0.11 to 1.0 like this:
plugins { id 'fi.jasoft.plugin.vaadin' version '1.0'}
but to no success.
Anyone that knows what is going on?
Hi,
The site that the plugin previously was hosted on (plugins.jasoft.fi) was recently terminated as Gradle provides a much better way of serving the plugins via the plugins {} block.
plugins { id 'fi.jasoft.plugin.vaadin' version '1.0'}
This looks correct and should work.
Could you make sure you do not have any line like this in any of your build.gradle files:
apply from: 'http://plugins.jasoft.fi/vaadin.plugin'
If you do, just remove it. It is not needed any more.
Also make sure that gradle doesn't run a cached old version of your build gradle file. You can do that by running
gradle --no-daemon --recompile-scripts build
Hope this helps :)
That last line did the trick :)
Thank you for saving me on this one. Was really scratching my head on what was going on here. Now the deadline tomorow morning is a matter of coding, not fixing the build-env :)