40 lines
1.4 KiB
Groovy
40 lines
1.4 KiB
Groovy
pluginManagement {
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral {
|
|
metadataSources {
|
|
mavenPom()
|
|
artifact()
|
|
ignoreGradleMetadataRedirection()
|
|
}
|
|
}
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
versionCatalogs {
|
|
libs {
|
|
version('gradle', '8.0.2')
|
|
version('junit', '5.9.2')
|
|
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('hamcrest', 'org.hamcrest', 'hamcrest-library').version('2.2')
|
|
library('bouncycastle', 'org.bouncycastle', 'bcpkix-jdk18on').version('1.72')
|
|
library('jackson', 'com.fasterxml.jackson.core', 'jackson-databind').version('2.12.7')
|
|
library('jna', 'net.java.dev.jna', 'jna').version('5.13.0')
|
|
library('datastructures-common', 'org.xbib', 'datastructures-common').version('2.0.0')
|
|
plugin('publish', 'com.gradle.plugin-publish').version('0.18.0')
|
|
}
|
|
}
|
|
}
|
|
|
|
include 'net'
|
|
include 'net-bouncycastle'
|
|
include 'net-mime'
|
|
include 'net-path'
|
|
include 'net-resource'
|
|
include 'net-security'
|
|
include 'net-socket'
|
|
include 'benchmark'
|