geforkt von Mirrors/Velocity
a028467e66
The Velocity API has had a lot of community input (special thanks to @hugmanrique who started the work, @lucko who contributed permissions support, and @Minecrell for providing initial feedback and an initial version of ServerListPlus). While the API is far from complete, there is enough available for people to start doing useful stuff with Velocity.
11 Zeilen
272 B
Groovy
11 Zeilen
272 B
Groovy
rootProject.name = 'velocity'
|
|
include (
|
|
'api',
|
|
'proxy',
|
|
'native'
|
|
)
|
|
findProject(':api')?.name = 'velocity-api'
|
|
findProject(':proxy')?.name = 'velocity-proxy'
|
|
findProject(':native')?.name = 'velocity-native'
|
|
|
|
enableFeaturePreview('STABLE_PUBLISHING') |