From 9b3e64a5955f81f1c8acbb59ad56394478bb6ed0 Mon Sep 17 00:00:00 2001 From: dfsek Date: Sun, 17 Oct 2021 15:36:22 -0700 Subject: [PATCH] Initial commit --- common/addons/manifest-addon-loader/build.gradle.kts | 2 ++ .../com/dfsek/terra/addons/manifest/ManifestLoaderEntry.java | 4 ++++ .../src/main/resources/META-INF/MANIFEST.MF | 1 + 3 files changed, 7 insertions(+) create mode 100644 common/addons/manifest-addon-loader/build.gradle.kts create mode 100644 common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/ManifestLoaderEntry.java create 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 new file mode 100644 index 000000000..7d82dc72f --- /dev/null +++ b/common/addons/manifest-addon-loader/build.gradle.kts @@ -0,0 +1,2 @@ +dependencies { +} diff --git a/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/ManifestLoaderEntry.java b/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/ManifestLoaderEntry.java new file mode 100644 index 000000000..7a3645ae5 --- /dev/null +++ b/common/addons/manifest-addon-loader/src/main/java/com/dfsek/terra/addons/manifest/ManifestLoaderEntry.java @@ -0,0 +1,4 @@ +package com.dfsek.terra.addons.manifest; + +public class ManifestLoaderEntry { +} 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 new file mode 100644 index 000000000..0cd2377d6 --- /dev/null +++ b/common/addons/manifest-addon-loader/src/main/resources/META-INF/MANIFEST.MF @@ -0,0 +1 @@ +Entry-Point: com.dfsek.terra.addons.manifest.ManifestLoaderEntry