Skip to content

Commit

Permalink
Fix build error/warning
Browse files Browse the repository at this point in the history
  • Loading branch information
IzzelAliz committed Jul 26, 2021
1 parent f0ff4e0 commit 29b631e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group 'io.izzel.arclight'
version '1.18'
version '1.19'

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ class ArclightGradlePlugin implements Plugin<Project> {
task.outDir = project.file("${project.buildDir}/arclight_cache/tmp_srg")
task.inSrg = extractSrg.output.get().asFile
task.inJar = new File(buildTools, "spigot-${arclightExt.mcVersion}.jar")
task.inVanillaJar = new File(task.buildData, "work/minecraft_server.${task.mcVersion}.jar")
task.inVanillaJar = new File(buildTools, "work/minecraft_server.${task.mcVersion}.jar")
task.packageName = arclightExt.packageName
task.dependsOn(extractSrg, createSrgToMcp, buildSpigot)
}
Expand All @@ -97,7 +97,7 @@ class ArclightGradlePlugin implements Plugin<Project> {
task.outJar = project.file("${project.buildDir}/arclight_cache/spigot-${arclightExt.mcVersion}-mapped.jar")
task.outDeobf = project.file("${project.buildDir}/arclight_cache/spigot-${arclightExt.mcVersion}-mapped-deobf.jar")
task.inAt = arclightExt.accessTransformer
task.dependsOn(processMapping)
task.dependsOn(processMapping, remapSpigot)
if (arclightExt.wipeVersion && !task.bukkitVersion) {
task.bukkitVersion = arclightExt.bukkitVersion
}
Expand Down

0 comments on commit 29b631e

Please sign in to comment.