Skip to content

Commit

Permalink
extracting shadowVersion variable and version bump towards gradle 8
Browse files Browse the repository at this point in the history
  • Loading branch information
rusefillc committed Dec 6, 2023
1 parent 79ae9aa commit eb57742
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion java_console/autotest/build.gradle
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
2 changes: 1 addition & 1 deletion java_console/ui/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '6.1.0'
id 'com.github.johnrengelman.shadow' version "${shadowVersion}"
}

configurations {
Expand Down
2 changes: 1 addition & 1 deletion java_tools/configuration_definition/build.gradle
Original file line number Diff line number Diff line change
@@ -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'
}

Expand Down
2 changes: 1 addition & 1 deletion java_tools/enum_to_string/build.gradle
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
3 changes: 3 additions & 0 deletions java_tools/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# seems not to work sorry
# org.gradle.unsafe.configuration-cache=true

shadowVersion=7.1.2

org.gradle.warning.mode=all

0 comments on commit eb57742

Please sign in to comment.