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.
This commit is contained in:
Andrew Steinborn
2021-05-30 23:15:38 -04:00
parent 4a8be52c93
commit 6a6ca7a03e
39 changed files with 203 additions and 35 deletions

View File

@@ -1,11 +1,15 @@
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(':native')?.name = 'velocity-native'
findProject(':proxy-core')?.name = 'velocity-proxy-core'
findProject(':native')?.name = 'velocity-native'
findProject(':network')?.name = 'velocity-network'