-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
settings.gradle
39 lines (34 loc) · 1.74 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
rootProject.name = 'jaybird'
include 'chacha64-plugin'
include 'jaybird-native'
include 'internal-tools'
dependencyResolutionManagement {
repositories {
mavenCentral()
}
versionCatalogs {
libs {
library('jna', 'net.java.dev.jna', 'jna-jpms').version('5.15.0')
library('jakarta.servlet-api', 'jakarta.servlet', 'jakarta.servlet-api').version('5.0.0')
library('bcprov-jdk18on', 'org.bouncycastle', 'bcprov-jdk18on').version('1.78.1')
library('jspecify', 'org.jspecify', 'jspecify').version('1.0.0')
}
testLibs {
version('junit', '5.10.2')
version('mockito', '5.12.0')
library('junit-bom', 'org.junit', 'junit-bom').versionRef('junit')
library('junit-jupiter', 'org.junit.jupiter', 'junit-jupiter').withoutVersion()
library('junit-platform-launcher', 'org.junit.platform', 'junit-platform-launcher').withoutVersion()
library('hamcrest', 'org.hamcrest', 'hamcrest').version('2.2')
library('hamcrest-optional', 'com.spotify', 'hamcrest-optional').version('1.3.2')
library('assertj-core', 'org.assertj', 'assertj-core').version('3.26.0')
library('mockito-bom', 'org.mockito', 'mockito-bom').versionRef('mockito')
library('mockito-core', 'org.mockito', 'mockito-core').withoutVersion()
library('mockito-junit-jupiter', 'org.mockito', 'mockito-junit-jupiter').withoutVersion()
library('awaitility', 'org.awaitility', 'awaitility').version('4.2.1')
bundle('junit', ['junit-jupiter'])
bundle('hamcrest', ['hamcrest', 'hamcrest-optional'])
bundle('mockito', ['mockito-core', 'mockito-junit-jupiter'])
}
}
}