Files
rbcs/settings.gradle
2024-12-17 10:03:13 +08:00

30 lines
604 B
Groovy

pluginManagement {
repositories {
mavenLocal()
maven {
url = getProperty('gitea.maven.url')
}
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositories {
maven {
url = getProperty('gitea.maven.url')
content {
includeGroup 'com.lys'
}
}
}
versionCatalogs {
catalog {
from group: 'com.lys', name: 'lys-catalog', version: getProperty('lys.version')
version('envelope', '2024.12.15')
}
}
}
rootProject.name = 'gbcs'