Initial commit

This commit is contained in:
zontreck 2025-03-20 10:39:07 -07:00 committed by GitHub
commit 94a0826131
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
28 changed files with 2444 additions and 0 deletions

View file

@ -0,0 +1,20 @@
package com.crimsonwarpedcraft.exampleplugin;
import io.papermc.lib.PaperLib;
import org.bukkit.plugin.java.JavaPlugin;
/**
* Created by Levi Muniz on 7/29/20.
*
* @author Copyright (c) Levi Muniz. All Rights Reserved.
*/
public class ExamplePlugin extends JavaPlugin {
@Override
public void onEnable() {
PaperLib.suggestPaper(this);
saveDefaultConfig();
}
}

View file

@ -0,0 +1 @@
# A journey of 1,000 lines starts with a single char

View file

@ -0,0 +1,20 @@
main: ${PACKAGE}.${NAME}
name: ${NAME}
version: "${VERSION}"
api-version: "1.21.1"
author: AUTHOR
description: DESCRIPTION
commands:
ex:
description: Base command for EXAMPLE
usage: "For a list of commands, type /ex help"
aliases: example
permissions:
example.test:
description: DESCRIPTION
default: true
example.*:
description: Grants all other permissions
default: false
children:
example.test: true

View file

@ -0,0 +1,16 @@
package com.crimsonwarpedcraft.exampleplugin;
import org.junit.jupiter.api.Test;
/**
* Tests for ExamplePlugin.
*
* @author Copyright (c) Levi Muniz. All Rights Reserved.
*/
public class ExamplePluginTest {
@Test
public void onEnable() {
}
}

View file