Mirror von
https://github.com/PaperMC/Velocity.git
synchronisiert 2024-11-16 21:10:30 +01:00
3c41211163
There is one major change: we now have a separate artifact for the annotation processor. As for NullAway, we are currently exempting the clientbound join game/respawn packets. They are ugly and need to be refactored.
11 Zeilen
337 B
Groovy
11 Zeilen
337 B
Groovy
rootProject.name = 'velocity'
|
|
include(
|
|
'api',
|
|
'proxy',
|
|
'native',
|
|
'annotation-processor'
|
|
)
|
|
findProject(':annotation-processor')?.name = 'velocity-annotation-processor'
|
|
findProject(':api')?.name = 'velocity-api'
|
|
findProject(':proxy')?.name = 'velocity-proxy'
|
|
findProject(':native')?.name = 'velocity-native' |