xtext-core/build.gradle
Christian Dietrich 4502ac4e5c [eclipse/xtext#2019] workaround for grgit transitive jgit dependency
Signed-off-by: Christian Dietrich <christian.dietrich@itemis.de>
2021-11-30 12:32:40 +01:00

56 lines
1.5 KiB
Groovy

/*
* Root project for xtext-core.
*/
import java.time.format.DateTimeFormatter
import java.time.LocalDateTime
buildscript {
apply from: "${rootDir}/gradle/versions.gradle"
repositories.mavenCentral()
dependencies {
classpath "org.xtext:xtext-gradle-plugin:$versions.xtext_gradle_plugin"
constraints {
classpath("org.eclipse.jgit:org.eclipse.jgit") {
version {
strictly "[5.13, 6.0["
}
}
}
}
}
plugins {
id 'org.ajoberstar.grgit' version '4.1.0'
}
apply from: "${rootDir}/gradle/versions.gradle"
apply from: "${rootDir}/gradle/bootstrap-setup.gradle"
ext.buildTime = DateTimeFormatter.ofPattern('yyyyMMdd-HHmm').format(LocalDateTime.now())
subprojects {
group = 'org.eclipse.xtext'
version = rootProject.version
apply plugin: 'maven-publish'
apply plugin: 'java-library'
dependencies {
api platform("org.eclipse.xtext:xtext-dev-bom:$project.version")
}
if (findProperty('compileXtend') == 'true') {
apply plugin: 'org.xtext.xtend'
}
apply plugin: 'eclipse'
apply from: "${rootDir}/gradle/upstream-repositories.gradle"
apply from: "${rootDir}/gradle/java-compiler-settings.gradle"
apply from: "${rootDir}/gradle/xtend-compiler-settings.gradle"
apply from: "${rootDir}/gradle/maven-deployment.gradle"
// The bootstrap project uses only the mwe2 source set
if (!name.endsWith('bootstrap')) {
apply from: "${rootDir}/gradle/eclipse-project-layout.gradle"
}
apply from: "${rootDir}/gradle/manifest-gen.gradle"
apply from: "${rootDir}/gradle/validation.gradle"
}