Skip to content

Commit 5f61ec1

Browse files
committed
Update dependencies
1 parent 4b407f9 commit 5f61ec1

File tree

2 files changed

+13
-9
lines changed

2 files changed

+13
-9
lines changed

build.gradle.kts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ plugins {
77
groovy
88
`java-gradle-plugin`
99
id("com.gradle.plugin-publish") version "2.0.0"
10-
id("com.vanniktech.maven.publish") version "0.34.0"
11-
id("com.diffplug.spotless") version "7.2.1"
10+
id("com.vanniktech.maven.publish") version "0.36.0"
11+
id("com.diffplug.spotless") version "8.2.1"
1212
}
1313

1414
version = providers.gradleProperty("VERSION_NAME").get()
@@ -77,15 +77,15 @@ dependencies {
7777
implementation("org.ow2.asm:asm-commons:9.9")
7878
implementation("commons-io:commons-io:2.19.0")
7979
implementation("org.codehaus.plexus:plexus-utils:4.0.2")
80-
implementation("org.codehaus.plexus:plexus-xml:4.1.0")
81-
implementation("org.apache.logging.log4j:log4j-core:2.24.1")
80+
implementation("org.codehaus.plexus:plexus-xml:4.1.1")
81+
implementation("org.apache.logging.log4j:log4j-core:2.25.3")
8282
implementation("org.vafer:jdependency:2.15")
8383

8484
testImplementation("org.spockframework:spock-core:2.4-groovy-4.0") {
8585
exclude(group = "org.codehaus.groovy")
8686
exclude(group = "org.hamcrest")
8787
}
88-
testImplementation("org.xmlunit:xmlunit-legacy:2.10.2")
88+
testImplementation("org.xmlunit:xmlunit-legacy:2.11.0")
8989
testImplementation("org.apache.commons:commons-lang3:3.17.0")
9090
testImplementation("com.google.guava:guava:33.3.1-jre")
9191
testImplementation(platform("org.junit:junit-bom:5.13.1"))

gradle.properties

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,22 @@
11
org.gradle.caching=true
22
org.gradle.configuration-cache=true
33
org.gradle.configuration-cache.parallel=true
4-
org.gradle.jvmargs=-Dfile.encoding=UTF-8 -Xmx4g -XX:MaxMetaspaceSize=2g
4+
org.gradle.jvmargs=-Dfile.encoding=UTF-8 -Xmx4g
55
org.gradle.kotlin.dsl.allWarningsAsErrors=true
66
org.gradle.parallel=true
7+
org.gradle.tooling.parallel=true
78

8-
GROUP=com.gradleup.shadow
9-
POM_ARTIFACT_ID=shadow-gradle-plugin
10-
VERSION_NAME=8.3.10-SNAPSHOT
9+
########## Properties for publishing to Maven Central ##########
1110

1211
mavenCentralAutomaticPublishing=true
12+
mavenCentralDeploymentValidation=PUBLISHED
1313
mavenCentralPublishing=true
1414
signAllPublications=true
1515

16+
GROUP=com.gradleup.shadow
17+
POM_ARTIFACT_ID=shadow-gradle-plugin
18+
VERSION_NAME=8.3.10-SNAPSHOT
19+
1620
POM_NAME=Shadow Gradle Plugin
1721
POM_DESCRIPTION=Gradle plugin to create fat/uber JARs, apply file transforms, and relocate packages for applications and libraries. Gradle version of Maven's Shade plugin.
1822
POM_INCEPTION_YEAR=2024

0 commit comments

Comments
 (0)