-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
22 lines (19 loc) · 941 Bytes
/
settings.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
rootProject.name = 'maven-model-combined'
dependencyResolutionManagement {
versionCatalogs {
libs {
library('maven-model', 'org.apache.maven', 'maven-model').version(MAVEN_MODEL_VERSION)
library('maven-model-builder', 'org.apache.maven', 'maven-model-builder').version(MAVEN_MODEL_VERSION)
library('maven-builder-support', 'org.apache.maven', 'maven-builder-support').version(MAVEN_MODEL_VERSION)
library('plexus-interpolation', 'org.codehaus.plexus', 'plexus-interpolation').version(PLEXUS_INTERPOLATION_VERSION)
library('plexus-utils', 'org.codehaus.plexus', 'plexus-utils').version(PLEXUS_UTILS_VERSION)
bundle('maven-model-combined', [
'maven-model',
'maven-model-builder',
'maven-builder-support',
'plexus-interpolation',
'plexus-utils'
])
}
}
}