[FIX] Правки gradle скриптов.

This commit is contained in:
zaxar163 2019-03-13 21:02:41 +03:00
parent d0d5eb69d7
commit e0eb90ec37
No known key found for this signature in database
GPG key ID: E3B309DD3852DE06
2 changed files with 3 additions and 5 deletions

View file

@ -2,14 +2,11 @@
def mainAgentName = "ru.gravit.launchserver.StarterAgent" def mainAgentName = "ru.gravit.launchserver.StarterAgent"
repositories { repositories {
maven {
url "http://maven.geomajas.org/"
}
maven { maven {
url "https://oss.sonatype.org/content/repositories/snapshots" url "https://oss.sonatype.org/content/repositories/snapshots"
} }
maven { maven {
url 'http://oss.sonatype.org/content/groups/public' url "http://maven.geomajas.org/"
} }
} }

View file

@ -1,10 +1,11 @@
configure(subprojects.findAll {it.name != 'modules'}) { configure(subprojects.findAll { it.name != 'modules' && it.name != 'Radon' }) {
apply plugin: 'idea' apply plugin: 'idea'
apply plugin: 'eclipse' apply plugin: 'eclipse'
apply plugin: 'java' apply plugin: 'java'
repositories { repositories {
mavenCentral() mavenCentral()
maven { url 'http://oss.sonatype.org/content/groups/public' }
maven { maven {
url "http://clojars.org/repo/" url "http://clojars.org/repo/"
} }