mirror of
https://github.com/PaperMC/Velocity.git
synced 2025-04-12 16:50:31 +08:00
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 lines
337 B
Groovy
11 lines
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' |