Update project's name and output name/group.

This commit is contained in:
zontreck 2025-03-20 10:49:44 -07:00
parent 94a0826131
commit 56a4681157
10 changed files with 45 additions and 24 deletions

View file

@ -1,15 +1,15 @@
package com.crimsonwarpedcraft.exampleplugin;
package dev.zontreck.amp;
import io.papermc.lib.PaperLib;
import org.bukkit.plugin.java.JavaPlugin;
/**
* Created by Levi Muniz on 7/29/20.
* AutoMoneyPlugin
*
* @author Copyright (c) Levi Muniz. All Rights Reserved.
* @author Copyright (c) zontreck. Licensed under the GPLv3.
*/
public class ExamplePlugin extends JavaPlugin {
public class AutoMoneyPlugin extends JavaPlugin {
@Override
public void onEnable() {

View file

@ -2,8 +2,8 @@ main: ${PACKAGE}.${NAME}
name: ${NAME}
version: "${VERSION}"
api-version: "1.21.1"
author: AUTHOR
description: DESCRIPTION
author: zontreck
description: A simple plugin providing automatic money to online players.
commands:
ex:
description: Base command for EXAMPLE

View file

@ -1,16 +0,0 @@
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

@ -0,0 +1,16 @@
package dev.zontreck.amp;
import org.junit.jupiter.api.Test;
/**
* AutoMoneyPlugin Tests
*
* @author Copyright (c) zontreck. Licensed under the GPLv3.
*/
public class AutoMoneyPlugin {
@Test
public void onEnable() {
}
}