Added a way to run jar (dosnt do anything but could be used to check opengl and move mod to mods folder)

This commit is contained in:
coolGi2007
2022-02-20 22:16:21 +10:30
parent 924efc0cbd
commit 4b84fd2a67
2 changed files with 9 additions and 1 deletions
+8
View File
@@ -50,6 +50,14 @@ subprojects { p ->
shadowMe(project(":core")) { transitive false }
}
}
jar {
manifest {
attributes 'Implementation-Title': rootProject.archives_base_name,
'Implementation-Version': rootProject.mod_version,
'Main-Class': 'com.seibel.lod.core.RunMain'
}
}
}
allprojects { p ->