Skip to content

Commit

Permalink
Add A-Jar
Browse files Browse the repository at this point in the history
  • Loading branch information
LolfoollorS committed Sep 1, 2022
1 parent 3b3702f commit de8b34e
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,21 @@ test {
}

application {
mainClassName = "cleverNotBot.CleverNotBot"
mainClassName = "clevernotbot.CleverNotBot"
}

jar {
manifest {
attributes "Main-Class": "clevernotbot.CleverNotBot"
}

from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
}

shadowJar {
archiveBaseName = "cleverNotBot"
archiveBaseName = "clevernotbot"
archiveClassifier = null
}

Expand Down

0 comments on commit de8b34e

Please sign in to comment.