mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-15 16:28:56 +00:00
19 lines
559 B
Groovy
19 lines
559 B
Groovy
subprojects {
|
|
apply plugin: 'java'
|
|
apply plugin: 'eclipse'
|
|
apply plugin: 'maven'
|
|
|
|
apply from: "${rootDir}/gradle/upstream-repositories.gradle"
|
|
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'
|
|
}
|
|
|
|
task cleanLocalMavenRepo(type: Delete) {
|
|
group = 'Upload'
|
|
description = 'Delete the local Maven repository'
|
|
delete 'build/maven-repository'
|
|
}
|