Update JavaFX Gradle plugin repository config

This commit makes the following improvements upon the stock
javafx.gradle file introduced in the previous commit:

 - Swap Maven Central for JCenter
 - Remove mavenLocal entirely
 - Update naming for clarity

See #66
This commit is contained in:
Chris Beams 2014-09-30 19:03:54 +02:00
parent d16c2740b6
commit e1889b0697
No known key found for this signature in database
GPG Key ID: 3D214F8F5BC5ED73

View File

@ -12,19 +12,19 @@ import org.gradle.api.GradleException;
buildscript {
repositories {
mavenLocal()
maven {
name = 'BinTray'
name = 'JavaFX Gradle plugin'
url = 'http://dl.bintray.com/content/shemnon/javafx-gradle/'
}
maven {
name = 'CloudBees Snapshot'
name = 'CloudBees snapshots'
url = 'http://repository-javafx-gradle-plugin.forge.cloudbees.com/snapshot'
}
ivy {
name = 'CloudBees snapshots'
url = 'http://repository-javafx-gradle-plugin.forge.cloudbees.com/snapshot'
}
mavenCentral()
jcenter()
}
dependencies {
try {