mirror of
https://github.com/PaperMC/Velocity.git
synced 2026-02-17 06:27:42 +01:00
15 lines
546 B
Groovy
15 lines
546 B
Groovy
rootProject.name = 'velocity'
|
|
include(
|
|
'api',
|
|
'proxy-core',
|
|
'implementation-java-edition',
|
|
'proxy',
|
|
'native',
|
|
'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(':implementation-java-edition')?.name = 'velocity-implementation-java-edition' |