net/settings.gradle

30 lines
1.4 KiB
Groovy
Raw Normal View History

2022-10-20 09:43:33 +02:00
dependencyResolutionManagement {
versionCatalogs {
libs {
version('gradle', '7.5.1')
version('junit', '5.9.1')
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')
library('junit4', 'junit', 'junit').version('4.13.2')
library('hamcrest', 'org.hamcrest', 'hamcrest-library').version('2.2')
library('bouncycastle', 'org.bouncycastle', 'bcpkix-jdk18on').version('1.71')
library('conscrypt', 'org.conscrypt', 'conscrypt-openjdk-uber').version('2.5.2')
library('jackson', 'com.fasterxml.jackson.core', 'jackson-databind').version('2.12.6')
library('guice', 'org.xbib', 'guice').version('4.4.2')
library('jna', 'net.java.dev.jna', 'jna').version('5.10.0')
library('datastructures-common', 'org.xbib', 'datastructures-common').version('1.0.1')
plugin('publish', 'com.gradle.plugin-publish').version('0.18.0')
}
}
}
include 'net'
include 'net-bouncycastle'
include 'net-mime'
include 'net-path'
2022-11-01 18:40:36 +01:00
include 'net-resource'
2022-10-20 09:43:33 +02:00
include 'net-security'
include 'net-socket'
include 'benchmark'