Mirror von
https://github.com/PaperMC/Velocity.git
synchronisiert 2024-11-16 21:10:30 +01:00
a
Dieser Commit ist enthalten in:
Ursprung
ab0300eb6c
Commit
5579f76316
31
implementation-java-edition/build.gradle
Normale Datei
31
implementation-java-edition/build.gradle
Normale Datei
@ -0,0 +1,31 @@
|
|||||||
|
plugins {
|
||||||
|
id 'java-library'
|
||||||
|
id 'checkstyle'
|
||||||
|
}
|
||||||
|
|
||||||
|
apply plugin: 'org.cadixdev.licenser'
|
||||||
|
apply from: '../gradle/checkstyle.gradle'
|
||||||
|
apply from: '../gradle/errorprone.gradle'
|
||||||
|
|
||||||
|
java {
|
||||||
|
sourceCompatibility = JavaVersion.VERSION_11
|
||||||
|
targetCompatibility = JavaVersion.VERSION_11
|
||||||
|
}
|
||||||
|
|
||||||
|
license {
|
||||||
|
header = project.rootProject.file('HEADER.txt')
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
implementation project(':velocity-api')
|
||||||
|
implementation project(':velocity-native')
|
||||||
|
implementation project(':velocity-proxy-core')
|
||||||
|
|
||||||
|
implementation "io.netty:netty-codec:${nettyVersion}"
|
||||||
|
implementation "io.netty:netty-codec-haproxy:${nettyVersion}"
|
||||||
|
implementation "io.netty:netty-codec-http:${nettyVersion}"
|
||||||
|
implementation "io.netty:netty-handler:${nettyVersion}"
|
||||||
|
implementation "io.netty:netty-transport-native-epoll:${nettyVersion}"
|
||||||
|
implementation "io.netty:netty-transport-native-epoll:${nettyVersion}:linux-x86_64"
|
||||||
|
implementation "io.netty:netty-transport-native-epoll:${nettyVersion}:linux-aarch_64"
|
||||||
|
}
|
@ -2,9 +2,9 @@ rootProject.name = 'velocity'
|
|||||||
include(
|
include(
|
||||||
'api',
|
'api',
|
||||||
'proxy-core',
|
'proxy-core',
|
||||||
|
'implementation-java-edition',
|
||||||
'proxy',
|
'proxy',
|
||||||
'native',
|
'native',
|
||||||
'network',
|
|
||||||
'annotation-processor'
|
'annotation-processor'
|
||||||
)
|
)
|
||||||
findProject(':annotation-processor')?.name = 'velocity-annotation-processor'
|
findProject(':annotation-processor')?.name = 'velocity-annotation-processor'
|
||||||
@ -12,4 +12,4 @@ findProject(':api')?.name = 'velocity-api'
|
|||||||
findProject(':proxy')?.name = 'velocity-proxy'
|
findProject(':proxy')?.name = 'velocity-proxy'
|
||||||
findProject(':proxy-core')?.name = 'velocity-proxy-core'
|
findProject(':proxy-core')?.name = 'velocity-proxy-core'
|
||||||
findProject(':native')?.name = 'velocity-native'
|
findProject(':native')?.name = 'velocity-native'
|
||||||
findProject(':network')?.name = 'velocity-network'
|
findProject(':implementation-java-edition')?.name = 'velocity-implementation-java-edition'
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren