3
0
Mirror von https://github.com/PaperMC/Velocity.git synchronisiert 2024-11-17 05:20:14 +01:00
Velocity/settings.gradle
Andrew Steinborn 6a6ca7a03e Move mostly independent parts of the proxy to its own module
At this point, we have mostly connection/protocol handling and the "core proxy logic" left in the proxy module.
2021-05-30 23:15:38 -04:00

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'