From f485f7b5ebdbe9bb6128d3c0ffb46c6a8b133fca Mon Sep 17 00:00:00 2001 From: Andre_601 Date: Tue, 6 Sep 2022 20:51:38 +0200 Subject: [PATCH 1/3] Add bungee.yml --- test/content/bungeecord/bungee.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 test/content/bungeecord/bungee.yml diff --git a/test/content/bungeecord/bungee.yml b/test/content/bungeecord/bungee.yml new file mode 100644 index 0000000..cbc219a --- /dev/null +++ b/test/content/bungeecord/bungee.yml @@ -0,0 +1,13 @@ +name: "ExamplePlugin" # Automatically acts as ID too +version: "1.0.0" +description: "Description" +authors: ["author"] # There is also "author" that accepts a single String + +depends: ["RequiredPlugin"] # Required dependencies +softDepends: ["OptionalPlugin"] # Optional dependencies + +main: "example.ExamplePlugin" + +mc-publish: + modrinth: "AAAA" + curseforge: 123456 From bd745829b67babd775abc3ec3ec93f00fbdf3f22 Mon Sep 17 00:00:00 2001 From: Andre_601 Date: Tue, 6 Sep 2022 20:56:20 +0200 Subject: [PATCH 2/3] Add loaders to bungee.yml --- test/content/bungeecord/bungee.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/test/content/bungeecord/bungee.yml b/test/content/bungeecord/bungee.yml index cbc219a..afb330b 100644 --- a/test/content/bungeecord/bungee.yml +++ b/test/content/bungeecord/bungee.yml @@ -11,3 +11,4 @@ main: "example.ExamplePlugin" mc-publish: modrinth: "AAAA" curseforge: 123456 + loaders: ["bungeecord", "waterfall"] From 30bb5a27c213111868647a7a539fbb41503d16c7 Mon Sep 17 00:00:00 2001 From: Andre_601 Date: Tue, 6 Sep 2022 20:56:47 +0200 Subject: [PATCH 3/3] Add plugin.yml to BungeeCord --- test/content/bungeecord/plugin.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 test/content/bungeecord/plugin.yml diff --git a/test/content/bungeecord/plugin.yml b/test/content/bungeecord/plugin.yml new file mode 100644 index 0000000..afb330b --- /dev/null +++ b/test/content/bungeecord/plugin.yml @@ -0,0 +1,14 @@ +name: "ExamplePlugin" # Automatically acts as ID too +version: "1.0.0" +description: "Description" +authors: ["author"] # There is also "author" that accepts a single String + +depends: ["RequiredPlugin"] # Required dependencies +softDepends: ["OptionalPlugin"] # Optional dependencies + +main: "example.ExamplePlugin" + +mc-publish: + modrinth: "AAAA" + curseforge: 123456 + loaders: ["bungeecord", "waterfall"]