Mirror von
https://github.com/PaperMC/Velocity.git
synchronisiert 2024-11-17 05:20:14 +01:00
6a6ca7a03e
At this point, we have mostly connection/protocol handling and the "core proxy logic" left in the proxy module.
15 Zeilen
486 B
Groovy
15 Zeilen
486 B
Groovy
rootProject.name = 'velocity'
|
|
include(
|
|
'api',
|
|
'proxy-core',
|
|
'proxy',
|
|
'native',
|
|
'network',
|
|
'annotation-processor'
|
|
)
|
|
findProject(':annotation-processor')?.name = 'velocity-annotation-processor'
|
|
findProject(':api')?.name = 'velocity-api'
|
|
findProject(':proxy')?.name = 'velocity-proxy'
|
|
findProject(':proxy-core')?.name = 'velocity-proxy-core'
|
|
findProject(':native')?.name = 'velocity-native'
|
|
findProject(':network')?.name = 'velocity-network' |