My project has many gradle issue…
But I cant fix it… I have been trying to solve this for 5 months now…
Build Scan: 오후 12:26:36: 실행 중 'build --scan --stacktrace'...> Task :Platform:Bukkit:gene - Pastebin.com
Project: GitHub - RTUServer/RSFramework
Anyone please help me…
That is not a build scan.
That’s just build output.
A build scan is the URL you get in the end after accepting the ToS that you did not share.
But besides that, the problem is the classical one when you get that error.
You have tasks with overlapping outputs which is a very bad idea.
You configure your shadowJar
tasks to have no classifier, which makes them have the same output file as the jar
tasks have.
Your cross-project dependencies have dependencies on the jar
task and its artifact.
But as the shadowJar
has the same artifact as output, Gradle detects this and yells at you.
You should never have tasks with overlapping outputs, as this causes all sorts of bad things.