xtext-core/build.gradle
Miro Spönemann 0ae96db5c9 [build] Added descriptions of common build files, removed remote publishing config
Signed-off-by: Miro Spönemann <miro.spoenemann@typefox.io>
2016-10-23 15:49:27 +02:00

26 lines
736 B
Groovy

/*
* Root project for xtext-core.
*/
ext.buildTime = new java.text.SimpleDateFormat('yyyyMMdd-HHmm').format(new Date())
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/java-compiler-settings.gradle"
apply from: "${rootDir}/gradle/maven-deployment.gradle"
apply from: "${rootDir}/gradle/eclipse-project-layout.gradle"
apply from: "${rootDir}/gradle/manifest-gen.gradle"
group = 'org.eclipse.xtext'
}
task cleanLocalMavenRepo(type: Delete) {
group = 'Upload'
description = 'Delete the local Maven repository'
delete 'build/maven-repository'
}