mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-15 08:18:55 +00:00
17 lines
404 B
Groovy
17 lines
404 B
Groovy
subprojects {
|
|
repositories {
|
|
jcenter()
|
|
maven {
|
|
url 'https://oss.sonatype.org/content/repositories/snapshots'
|
|
}
|
|
}
|
|
|
|
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"
|
|
|
|
group = 'org.eclipse.xtext'
|
|
}
|