From 4b84fd2a672f4c1845c9c23902df413a395fb144 Mon Sep 17 00:00:00 2001 From: coolGi2007 Date: Sun, 20 Feb 2022 22:16:21 +1030 Subject: [PATCH] Added a way to run jar (dosnt do anything but could be used to check opengl and move mod to mods folder) --- build.gradle | 8 ++++++++ core | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index f1471f118..10452aff1 100644 --- a/build.gradle +++ b/build.gradle @@ -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 -> diff --git a/core b/core index cff317937..a14046ef8 160000 --- a/core +++ b/core @@ -1 +1 @@ -Subproject commit cff317937fa9c4845ef25b188ed0af0842415930 +Subproject commit a14046ef8803ccb3f623aeaec25accf3c3f1f776