Files
jwo/settings.gradle
Walter Oggioni 89817c5624
All checks were successful
CI / build (push) Successful in 1m41s
added JPMS URL stream handler
2025-01-09 16:13:38 +08:00

32 lines
642 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'
include 'jwo-test'
include 'jwo-test-module'