initial commit

This commit is contained in:
2021-09-25 20:34:20 +02:00
commit 9f085af24a
23 changed files with 1549 additions and 0 deletions

10
common/build.gradle Normal file
View File

@@ -0,0 +1,10 @@
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
jar {
manifest {
attributes "Automatic-Module-Name" : "net.woggioni.executable.jar"
}
}