rpm/settings.gradle

25 lines
1.2 KiB
Groovy
Raw Permalink Normal View History

2022-05-25 15:38:56 +02:00
dependencyResolutionManagement {
versionCatalogs {
libs {
2024-01-07 16:30:16 +01:00
version('gradle', '8.5')
library('bzip2', 'org.xbib', 'io-compress-bzip2').version('4.0.0')
library('xz', 'org.xbib', 'io-compress-xz').version('4.0.0')
library('bouncycastle', 'org.bouncycastle', 'bcpg-jdk18on').version('1.77')
library('ant', 'org.apache.ant', 'ant').version('1.10.14')
}
testLibs {
version('junit', '5.10.1')
2022-05-25 15:38:56 +02:00
library('junit-jupiter-api', 'org.junit.jupiter', 'junit-jupiter-api').versionRef('junit')
library('junit-jupiter-params', 'org.junit.jupiter', 'junit-jupiter-params').versionRef('junit')
library('junit-jupiter-engine', 'org.junit.jupiter', 'junit-jupiter-engine').versionRef('junit')
2024-01-07 16:30:16 +01:00
library('junit-vintage-engine', 'org.junit.vintage', 'junit-vintage-engine').versionRef('junit')
library('junit-jupiter-platform-launcher', 'org.junit.platform', 'junit-platform-launcher').version('1.10.1')
library('hamcrest', 'org.hamcrest', 'hamcrest-library').version('2.2')
library('junit4', 'junit', 'junit').version('4.13.2')
2022-05-25 15:38:56 +02:00
}
}
}
2017-10-07 13:14:33 +02:00
include 'rpm-core'
include 'rpm-ant'