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'
[/code]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 [code]
gradle --no-daemon --recompile-scripts build

Hope this helps :slight_smile:

That last line did the trick :slight_smile:

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 :slight_smile:

Great to hear! Good luck with your deadline :slight_smile: