mirror of
https://github.com/Eaglercraft-Archive/Eaglercraftx-1.8.8-src.git
synced 2025-06-28 02:48:14 -05:00
<1.1.0> Add protocol V4 support to EaglerXVelocity
This commit is contained in:
43
gateway/EaglercraftXVelocity/build.gradle
Normal file
43
gateway/EaglercraftXVelocity/build.gradle
Normal file
@ -0,0 +1,43 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'eclipse'
|
||||
}
|
||||
|
||||
group = 'net.lax1dude.eaglercraft.v1_8.plugin.gateway_velocity'
|
||||
version = ''
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
main {
|
||||
java {
|
||||
srcDirs(
|
||||
'src/main/java',
|
||||
'../../sources/protocol-game/java',
|
||||
'../backend-rpc-protocol/src/backend-rpc-protocol/java'
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation files('deps/Velocity.jar')
|
||||
}
|
||||
|
||||
java {
|
||||
sourceCompatibility = JavaVersion.VERSION_17
|
||||
targetCompatibility = JavaVersion.VERSION_17
|
||||
}
|
||||
|
||||
jar {
|
||||
compileJava.options.encoding = 'UTF-8'
|
||||
javadoc.options.encoding = 'UTF-8'
|
||||
|
||||
manifest {
|
||||
attributes(
|
||||
'Main-Class': 'net.lax1dude.eaglercraft.v1_8.plugin.gateway_velocity.shit.MainClass'
|
||||
)
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user