xtext-core/build.gradle

18 lines
651 B
Groovy
Raw Normal View History

subprojects {
repositories {
jcenter()
maven { url 'http://services.typefox.io/open-source/jenkins//job/lsapi/lastSuccessfulBuild/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'
2016-06-10 15:52:23 +00:00
apply plugin: 'eclipse'
2016-06-10 13:18:07 +00:00
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"
2016-06-15 09:03:53 +00:00
apply from: "${rootDir}/gradle/maven-deployment.gradle"
group = 'org.eclipse.xtext'
}