diff --git a/maven.gradle b/maven.gradle deleted file mode 100644 index 073385d4a36a347ff119dd3efd0b7d55f5235588..0000000000000000000000000000000000000000 --- a/maven.gradle +++ /dev/null @@ -1,35 +0,0 @@ -rootProject.allprojects { - String rosMavenPath = System.getenv("ROS_MAVEN_PATH") - String rosMavenRepository = System.getenv("ROS_MAVEN_REPOSITORY") - repositories { - if (rosMavenPath != null) { - rosMavenPath.tokenize(":").each { path -> - //noinspection GroovyAssignabilityCheck - maven { - // We can't use uri() here because we aren't running inside something - // that implements the Script interface. - url "file:${path}" - } - } - } - //noinspection GroovyAssignabilityCheck - maven { - url "http://repository.springsource.com/maven/bundles/release" - } - //noinspection GroovyAssignabilityCheck - maven { - url "http://repository.springsource.com/maven/bundles/external" - } - if (rosMavenRepository != null) { - //noinspection GroovyAssignabilityCheck - maven { - url rosMavenRepository - } - } - //noinspection GroovyAssignabilityCheck - maven { - url "https://github.com/rosjava/rosjava_mvn_repo/raw/master" - } - mavenCentral() - } -}