TheBoegl / gradle-launch4j

A gradle-plugin to create windows executables with launch4j

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

The dependencies.classpath in the example might not be correct.

cnrudd opened this issue · comments

Hi,

just fyi...

When I use from the example:
buildscript { repositories { jcenter() } dependencies { classpath 'gradle.plugin.edu.sc.seis.gradle:launch4j:2.3.0' } }

I get this error:

Error:Could not find gradle.plugin.edu.sc.seis.gradle:launch4j:2.3.0.
Searched in the following locations:
https://jcenter.bintray.com/gradle/plugin/edu/sc/seis/gradle/launch4j/2.3.0/launch4j-2.3.0.pom
https://jcenter.bintray.com/gradle/plugin/edu/sc/seis/gradle/launch4j/2.3.0/launch4j-2.3.0.jar
Required by:
project :

But when I use the following, it works:
buildscript { repositories { jcenter() } dependencies { classpath 'edu.sc.seis.gradle:launch4j:2.3.0' } }