Skip to content

Commit

Permalink
build: update to gradle 8
Browse files Browse the repository at this point in the history
  • Loading branch information
cric96 committed Nov 5, 2024
1 parent d29d3c1 commit 18a6320
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ File(rootProject.rootDir.path + "/src/main/yaml").listFiles()
val task by tasks.register<JavaExec>("run${it.nameWithoutExtension.capitalize()}") {
group = alchemistGroup // This is for better organization when running ./gradlew tasks
description = "Launches simulation ${it.nameWithoutExtension}" // Just documentation
main = "it.unibo.alchemist.Alchemist" // The class to launch
mainClass.set("it.unibo.alchemist.Alchemist") // The class to launch
classpath = sourceSets["main"].runtimeClasspath // The classpath to use
// In case our simulation produces data, we write it in the following folder:
val exportsDir = File("${projectDir.path}/build/exports/${it.nameWithoutExtension}")
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 18a6320

Please sign in to comment.