Don't jarjar anymore.
This commit is contained in:
parent
44eb9d1d9c
commit
307b3427e8
77 changed files with 6359 additions and 15 deletions
15
build.gradle
15
build.gradle
|
@ -11,13 +11,6 @@ base {
|
|||
archivesName = project.archives_name
|
||||
}
|
||||
|
||||
configurations {
|
||||
provided
|
||||
compile.extendsFrom(provided)
|
||||
implementation.extendsFrom(provided)
|
||||
minecraftLibrary.extendsFrom(provided)
|
||||
}
|
||||
|
||||
loom {
|
||||
silentMojangMappingsLicense()
|
||||
|
||||
|
@ -43,10 +36,6 @@ dependencies {
|
|||
minecraft "net.minecraft:minecraft:$project.minecraft_version"
|
||||
mappings loom.officialMojangMappings()
|
||||
forge "net.minecraftforge:forge:$project.forge_version"
|
||||
|
||||
|
||||
provided "dev.zontreck:LibAC:${libac}"
|
||||
provided "dev.zontreck:EventsBus:${eventsbus}"
|
||||
}
|
||||
|
||||
processResources {
|
||||
|
@ -72,10 +61,6 @@ tasks.withType(JavaCompile).configureEach {
|
|||
it.options.release = 17
|
||||
}
|
||||
tasks.named('jar', Jar).configure {
|
||||
from {
|
||||
configurations.provided.asFileTree.collect { zipTree(it) }
|
||||
}
|
||||
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
||||
|
||||
manifest {
|
||||
attributes([
|
||||
|
|
Reference in a new issue