-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
40 lines (32 loc) · 1.57 KB
/
settings.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// SPDX-FileCopyrightText: 2023-2024 Mark Rotteveel
// SPDX-License-Identifier: Apache-2.0
rootProject.name = 'ext-table-gen'
dependencyResolutionManagement {
repositories {
mavenCentral()
}
versionCatalogs {
libs {
version('picocli', '4.7.6')
library('picocli-core', 'info.picocli', 'picocli').versionRef('picocli')
library('picocli-codegen', 'info.picocli', 'picocli-codegen').versionRef('picocli')
library('opencsv', 'com.opencsv', 'opencsv').version('5.9')
library('jaxb-api', 'jakarta.xml.bind', 'jakarta.xml.bind-api').version('4.0.2')
library('jaxb-runtime', 'org.glassfish.jaxb', 'jaxb-runtime').version('4.0.5')
library('commons-lang3', 'org.apache.commons', 'commons-lang3').version('3.17.0')
library('jspecify', 'org.jspecify', 'jspecify').version('1.0.0')
bundle('jaxb', ['jaxb-api', 'jaxb-runtime'])
}
testLibs {
version('junit', '5.11.1')
library('junit-bom', 'org.junit', 'junit-bom').versionRef('junit')
library('junit-jupiter', 'org.junit.jupiter', 'junit-jupiter').withoutVersion()
library('hamcrest', 'org.hamcrest', 'hamcrest').version('3.0')
library('hamcrest-optional', 'com.spotify', 'hamcrest-optional').version('1.3.2')
library('jaybird', 'org.firebirdsql.jdbc', 'jaybird').version('5.0.5.java11')
bundle('junit', ['junit-jupiter'])
bundle('hamcrest', ['hamcrest', 'hamcrest-optional'])
}
}
}
include 'test-common'