diff --git a/build.gradle b/build.gradle index 13c5a81698e1bd06cc7a401fa3222a1d73855c39..32482cd114a1490d8da7a14866732cad9778e6ab 100644 --- a/build.gradle +++ b/build.gradle @@ -3,6 +3,7 @@ plugins { id "com.github.johnrengelman.shadow" version "${shadowVersion}" id "com.github.node-gradle.node" version "${nodePluginVersion}" id "com.github.spotbugs" version "${spotbugsVersion}" + id "com.palantir.git-version" version "${gitVersionVersion}" id "com.star-zero.gradle.githook" version "${githooksVersion}" id "eclipse-wtp" id "jacoco" @@ -26,6 +27,7 @@ subprojects { apply plugin: "com.github.johnrengelman.shadow" apply plugin: "com.github.node-gradle.node" apply plugin: "com.github.spotbugs" + apply plugin: "com.palantir.git-version" apply plugin: "com.star-zero.gradle.githook" apply plugin: "com.github.johnrengelman.shadow" apply plugin: "eclipse-wtp" @@ -41,6 +43,7 @@ subprojects { sourceCompatibility = JavaVersion.VERSION_11 targetCompatibility = JavaVersion.VERSION_11 + apply from: "${rootDir}/gradle/app-version.gradle" apply from: "${rootDir}/gradle/dependencies.gradle" apply from: "${rootDir}/gradle/git-hooks.gradle" apply from: "${rootDir}/gradle/repositories.gradle"