Skip to content

Commit

Permalink
Adds main class to build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
joaobispo committed Mar 30, 2024
1 parent 4eb0643 commit 16b32ff
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions ClavaWeaver/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ plugins {
// Java project
apply plugin: 'java'

// Executable
apply plugin: 'application'

java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
Expand Down Expand Up @@ -82,3 +85,7 @@ sourceSets {
}

}

application {
mainClass.set("pt.up.fe.specs.clava.weaver.ClavaWeaverLauncher")
}

0 comments on commit 16b32ff

Please sign in to comment.