Skip to content

Commit

Permalink
fix: fix a bug that Aetherium.jar is not in the classpath of Etoile
Browse files Browse the repository at this point in the history
  • Loading branch information
freeze-dolphin committed Sep 2, 2024
1 parent a1381d8 commit d2442c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ val createEtoileScriptsTask = tasks.create<CreateStartScripts>("createEtoileScri
mainClass = "io.sn.aetherium.implementations.crystals.EtoileRessurectionKt"
applicationName = "Etoile"
outputDir = file("${layout.projectDirectory.dir("build")}/tmp/scripts")
classpath = sourceSets.main.get().runtimeClasspath
classpath = files("Aetherium.jar").plus(sourceSets.main.get().compileClasspath)
}

tasks.named("distZip") {
Expand Down

0 comments on commit d2442c4

Please sign in to comment.