set main class of cli implementation

This commit is contained in:
dfsek
2021-12-22 01:14:50 -07:00
parent 4646fdee89
commit 6b26cfc964
+9
View File
@@ -13,3 +13,12 @@ dependencies {
shadedImplementation("net.jafama", "jafama", Versions.Libraries.Internal.jafama) shadedImplementation("net.jafama", "jafama", Versions.Libraries.Internal.jafama)
} }
tasks.withType<Jar>() {
entryCompression = ZipEntryCompression.STORED
manifest {
attributes(
"Main-Class" to "com.dfsek.terra.cli.TerraCLI",
)
}
}