Rely on the user to provide a jcenter-compatible repository by default

Fixes #18
This commit is contained in:
R. Tyler Croy 2015-09-09 12:48:58 -07:00
parent d0de027097
commit d60010f797
No known key found for this signature in database
GPG Key ID: 1426C7DC3F51E16F
2 changed files with 5 additions and 2 deletions

View File

@ -39,6 +39,11 @@ buildscript {
}
apply plugin: 'com.github.jruby-gradle.storm'
repositories {
jcenter()
mavenLocal()
}
jrubyStorm {
}
"""

View File

@ -21,8 +21,6 @@ class JRubyStormPlugin implements Plugin<Project> {
@PackageScope
void updateRepositories(Project project) {
project.repositories {
// jcenter contains the redstorm and gradle dependencies
jcenter()
// Repositories for Storm dependencies
maven { url 'http://clojars.org/repo/' }
maven { url 'http://conjars.org/repo/' }