xtext-core/build.gradle
Moritz Eysholdt 3ff5e4899d fix repo URLs
Signed-off-by: Moritz Eysholdt <moritz.eysholdt@typefox.io>
2016-06-17 12:15:59 +02:00

17 lines
645 B
Groovy

subprojects {
repositories {
jcenter()
maven { url 'http://services.typefox.io/open-source/jenkins/job/lsapi/lastStableBuild/artifact/build/maven-repository/' }
maven { url 'http://services.typefox.io/open-source/jenkins/job/xtext-lib/job/master/lastStableBuild/artifact/build/maven-repository/' }
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'maven'
apply from: "${rootDir}/gradle/versions.gradle"
apply from: "${rootDir}/gradle/eclipse-project-layout.gradle"
apply from: "${rootDir}/gradle/java-compiler-settings.gradle"
apply from: "${rootDir}/gradle/maven-deployment.gradle"
group = 'org.eclipse.xtext'
}