Added auto-updater, started to transfer Skript over, did the feather and freeze.

This commit is contained in:
wolf
2025-06-28 23:36:11 -04:00
parent d9967516b6
commit 0402d95f56
44 changed files with 1024 additions and 231 deletions

View File

@@ -5,7 +5,7 @@ plugins {
}
group = 'me.trouper'
version = '1.0-SNAPSHOT'
version = '1.0.0'
repositories {
mavenCentral()
@@ -75,4 +75,14 @@ processResources {
shadowJar {
minimize()
}
task uploadPlugin(type: JavaExec) {
dependsOn(shadowJar)
mainClass = 'me.trouper.uploader.Uploader'
classpath = project(':Uploader').sourceSets.main.runtimeClasspath
def shadowJar = tasks.named("shadowJar").get().archiveFile.get().asFile
args = [shadowJar.absolutePath]
}