mirror of
https://github.com/zontreck/AutoMoneyPlugin
synced 2025-06-19 10:23:55 +00:00
Update project's name and output name/group.
This commit is contained in:
parent
94a0826131
commit
56a4681157
10 changed files with 45 additions and 24 deletions
|
@ -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() {
|
|
@ -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
|
||||
|
|
|
@ -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() {
|
||||
|
||||
}
|
||||
}
|
16
src/test/java/dev/zontreck/amp/AutoMoneyPlugin.java
Normal file
16
src/test/java/dev/zontreck/amp/AutoMoneyPlugin.java
Normal 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() {
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue