Bungee added

This commit is contained in:
catfoolyou
2025-02-24 12:55:14 -05:00
parent 4aa37b793e
commit 77b143500a
209 changed files with 19158 additions and 0 deletions

39
eaglerbungee/build.gradle Normal file
View File

@@ -0,0 +1,39 @@
plugins {
id "java"
}
sourceSets {
main {
java {
srcDirs(
"src/main/java"
)
}
}
}
repositories {
mavenCentral()
}
tasks.withType(JavaCompile) {
options.warnings = false
options.compilerArgs << "-Xmaxerrs" << "1000"
}
dependencies {
implementation fileTree(dir: '.', include: '*.jar')
}
jar {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
manifest {
attributes(
'Main-Class': 'net.md_5.bungee.BungeeCord'
)
}
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
}