From c6e6478043bf8643483f5817e7ae4700f388c721 Mon Sep 17 00:00:00 2001 From: dfsek Date: Wed, 17 Nov 2021 08:52:23 -0700 Subject: [PATCH] load bootstrap addons --- common/addons/manifest-addon-loader/build.gradle.kts | 6 ++++++ .../src/main/resources/META-INF/MANIFEST.MF | 1 - 2 files changed, 6 insertions(+), 1 deletion(-) delete mode 100644 common/addons/manifest-addon-loader/src/main/resources/META-INF/MANIFEST.MF diff --git a/common/addons/manifest-addon-loader/build.gradle.kts b/common/addons/manifest-addon-loader/build.gradle.kts index 2d02cabbf..5f42f3535 100644 --- a/common/addons/manifest-addon-loader/build.gradle.kts +++ b/common/addons/manifest-addon-loader/build.gradle.kts @@ -2,3 +2,9 @@ dependencies { "shadedApi"("commons-io:commons-io:2.6") "shadedImplementation"("com.dfsek.tectonic:yaml:2.1.2") } + +tasks.withType() { + manifest { + attributes("Bootstrap-Addon-Entry-Point" to "com.dfsek.terra.addons.manifest.impl.ManifestAddonLoader") + } +} \ No newline at end of file diff --git a/common/addons/manifest-addon-loader/src/main/resources/META-INF/MANIFEST.MF b/common/addons/manifest-addon-loader/src/main/resources/META-INF/MANIFEST.MF deleted file mode 100644 index 99c58939e..000000000 --- a/common/addons/manifest-addon-loader/src/main/resources/META-INF/MANIFEST.MF +++ /dev/null @@ -1 +0,0 @@ -Bootstrap-Addon-Entry-Point: com.dfsek.terra.addons.manifest.impl.ManifestAddonLoader