45 lines
1.7 KiB
Groovy
45 lines
1.7 KiB
Groovy
pluginManagement {
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral {
|
|
metadataSources {
|
|
mavenPom()
|
|
artifact()
|
|
ignoreGradleMetadataRedirection()
|
|
}
|
|
}
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
versionCatalogs {
|
|
libs {
|
|
version('gradle', '8.7')
|
|
version('net', '4.4.0')
|
|
library('net-security', 'org.xbib', 'net-security').versionRef('net')
|
|
}
|
|
testLibs {
|
|
version('junit', '5.10.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('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')
|
|
library('mockito-core', 'org.mockito', 'mockito-core').version('5.11.0')
|
|
library('mockito-junit-jupiter', 'org.mockito', 'mockito-junit-jupiter').version('5.11.0')
|
|
library('slf4j', 'org.slf4j', 'slf4j-api').version('2.0.13')
|
|
}
|
|
}
|
|
}
|
|
|
|
include 'files-api'
|
|
include 'files-ftp'
|
|
include 'files-ftp-fs'
|
|
include 'files-ftp-mock'
|
|
include 'files-sftp'
|
|
include 'files-sftp-fs'
|
|
include 'files-webdav'
|
|
include 'files-webdav-fs'
|