extracting shadowVersion variable and version bump towards gradle 8 (#310)

This commit is contained in:
rusefillc 2023-12-09 18:10:20 -05:00 committed by GitHub
parent c158b9cf9b
commit 1478f279d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 7 additions and 4 deletions

View File

@ -1,6 +1,6 @@
plugins {
id 'java-library'
id 'com.github.johnrengelman.shadow' version '6.1.0'
id 'com.github.johnrengelman.shadow' version "${shadowVersion}"
}
apply from: '../../java_tools/dependencies.gradle'

View File

@ -1,6 +1,6 @@
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '6.1.0'
id 'com.github.johnrengelman.shadow' version "${shadowVersion}"
}
configurations {

View File

@ -1,6 +1,6 @@
plugins {
id 'java-library'
id 'com.github.johnrengelman.shadow' version '6.1.0'
id 'com.github.johnrengelman.shadow' version "${shadowVersion}"
id 'antlr'
}

View File

@ -1,6 +1,6 @@
plugins {
id 'java-library'
id 'com.github.johnrengelman.shadow' version '6.1.0'
id 'com.github.johnrengelman.shadow' version "${shadowVersion}"
}
defaultTasks 'shadowJar'

View File

@ -1,3 +1,6 @@
# seems not to work sorry
# org.gradle.unsafe.configuration-cache=true
shadowVersion=7.1.2
org.gradle.warning.mode=all