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 { buildscript {
repositories { repositories {
mavenLocal()
maven { maven {
name = 'BinTray' name = 'JavaFX Gradle plugin'
url = 'http://dl.bintray.com/content/shemnon/javafx-gradle/' url = 'http://dl.bintray.com/content/shemnon/javafx-gradle/'
} }
maven { maven {
name = 'CloudBees Snapshot' name = 'CloudBees snapshots'
url = 'http://repository-javafx-gradle-plugin.forge.cloudbees.com/snapshot' url = 'http://repository-javafx-gradle-plugin.forge.cloudbees.com/snapshot'
} }
ivy { ivy {
name = 'CloudBees snapshots'
url = 'http://repository-javafx-gradle-plugin.forge.cloudbees.com/snapshot' url = 'http://repository-javafx-gradle-plugin.forge.cloudbees.com/snapshot'
} }
mavenCentral() jcenter()
} }
dependencies { dependencies {
try { try {