Kendall Shaw
04/12/2024, 8:15 PMKendall Shaw
04/12/2024, 8:35 PMThomas Broyer
04/12/2024, 8:52 PMgradlePluginPortal()
https://plugins.gradle.org/plugin/com.github.johnrengelman.shadowKendall Shaw
04/12/2024, 8:54 PMThomas Broyer
04/12/2024, 8:55 PMKendall Shaw
04/12/2024, 9:16 PMKendall Shaw
04/12/2024, 9:22 PMThomas Broyer
04/12/2024, 9:23 PMgradle init
for a "basic" build (build structure only), added the following to the build.gradle.kts
plugins {
id("com.github.johnrengelman.shadow") version "8.1.1"
}
then ran `./gradlew buildEnvironment`:
$ ./gradlew buildEnvironment
> Task :buildEnvironment
------------------------------------------------------------
Root project 'test'
------------------------------------------------------------
classpath
+--- com.github.johnrengelman.shadow:com.github.johnrengelman.shadow.gradle.plugin:8.1.1
| \--- com.github.johnrengelman:shadow:8.1.1
| +--- org.jdom:jdom2:2.0.6.1
| +--- org.ow2.asm:asm:9.4
| +--- org.ow2.asm:asm-commons:9.4
| | +--- org.ow2.asm:asm:9.4
| | \--- org.ow2.asm:asm-tree:9.4
| | \--- org.ow2.asm:asm:9.4
| +--- commons-io:commons-io:2.11.0
| +--- org.apache.ant:ant:1.10.13
| | \--- org.apache.ant:ant-launcher:1.10.13
| +--- org.codehaus.plexus:plexus-utils:3.5.1
| +--- org.apache.logging.log4j:log4j-core:2.20.0
| | \--- org.apache.logging.log4j:log4j-api:2.20.0
| \--- org.vafer:jdependency:2.8.0
\--- org.apache.logging.log4j:log4j-core:{require 2.17.1; reject [2.0, 2.17.1)} -> 2.20.0 (c)
(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree.
(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation.
A web-based, searchable dependency report is available by adding the --scan option.
So probably related to your environment yes.Kendall Shaw
04/12/2024, 9:23 PMKendall Shaw
04/12/2024, 9:38 PMThomas Broyer
04/12/2024, 9:44 PMpluginManagement
in the settings script with repository content filtering?
https://docs.gradle.org/current/userguide/declaring_repositories.html#sec:repository-content-filtering
(but I think you won't have the latest version; and Maven Central apparently only has a fork by Palantir)Vampire
04/13/2024, 12:13 PMVampire
04/13/2024, 12:14 PM