Files
jwo/settings.gradle
Walter Oggioni 53b00359a3
All checks were successful
CI / build (push) Successful in 26s
migrated to gitea
2024-04-04 06:54:37 +08:00

31 lines
601 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 = 'jwo'
include('benchmark')
include('jmath')
include('jmath-benchmark')