Files
wdi/settings.gradle
Walter Oggioni ea7a077699
All checks were successful
CI / build (push) Successful in 9s
migrated to gitea
2024-04-04 07:01:28 +08:00

27 lines
535 B
Groovy

pluginManagement {
repositories {
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')
}
}
}
rootProject.name = 'wdi'