Merge pull request #58 from Badbird5907/master
Accidentally pushed to my own repo
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
plugins {
|
||||
id("java")
|
||||
id("net.nuggetmc.java-conventions")
|
||||
}
|
||||
|
||||
group = "net.nuggetmc"
|
||||
version = "3.3.1-BETA"
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
plugins {
|
||||
`java-library`
|
||||
id("io.papermc.paperweight.userdev") version "1.3.7"
|
||||
id("net.nuggetmc.java-conventions")
|
||||
}
|
||||
|
||||
group = "net.nuggetmc"
|
||||
version = "3.3.1-BETA"
|
||||
description = "TerminatorPlus"
|
||||
|
||||
java {
|
||||
|
||||
@@ -236,7 +236,10 @@ public class BotCommand extends CommandInstance {
|
||||
|
||||
@Command(
|
||||
name = "count",
|
||||
desc = "Counts the amount of bots on screen by name."
|
||||
desc = "Counts the amount of bots on screen by name.",
|
||||
aliases = {
|
||||
"list"
|
||||
}
|
||||
)
|
||||
public void count(CommandSender sender) {
|
||||
List<String> names = manager.fetchNames();
|
||||
|
||||
@@ -1,10 +1,8 @@
|
||||
plugins {
|
||||
id("java")
|
||||
id("net.nuggetmc.java-conventions")
|
||||
}
|
||||
|
||||
group = "net.nuggetmc"
|
||||
version = "3.3.1-BETA"
|
||||
|
||||
val jarName = "TerminatorPlus-" + version;
|
||||
|
||||
repositories {
|
||||
|
||||
11
buildSrc/build.gradle.kts
Normal file
11
buildSrc/build.gradle.kts
Normal file
@@ -0,0 +1,11 @@
|
||||
plugins {
|
||||
// Support convention plugins written in Kotlin. Convention plugins are build scripts in 'src/main' that automatically become available as plugins in the main build.
|
||||
`kotlin-dsl`
|
||||
}
|
||||
|
||||
repositories {
|
||||
// Use the plugin portal to apply community plugins in convention plugins.
|
||||
gradlePluginPortal()
|
||||
}
|
||||
dependencies {
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
plugins {
|
||||
`java-library`
|
||||
}
|
||||
|
||||
group = "net.nuggetmc"
|
||||
version = "4.0.0-BETA"
|
||||
@@ -8,3 +8,5 @@ pluginManagement {
|
||||
rootProject.name = "TerminatorPlus"
|
||||
include("TerminatorPlus-Plugin")
|
||||
include("TerminatorPlus-API")
|
||||
|
||||
// set the version
|
||||
|
||||
Reference in New Issue
Block a user