2022-11-16 23:12:46 +01:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
mavenCentral {
|
|
|
|
metadataSources {
|
|
|
|
mavenPom()
|
|
|
|
artifact()
|
|
|
|
ignoreGradleMetadataRedirection()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
gradlePluginPortal()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencyResolutionManagement {
|
|
|
|
versionCatalogs {
|
|
|
|
libs {
|
2024-04-13 19:30:30 +02:00
|
|
|
version('gradle', '8.7')
|
2024-05-17 17:24:26 +02:00
|
|
|
library('maverick-synergy-client', 'com.sshtools', 'maverick-synergy-client').version('3.1.1')
|
2024-04-13 19:30:30 +02:00
|
|
|
}
|
|
|
|
testLibs {
|
|
|
|
version('junit', '5.10.2')
|
2024-07-23 22:00:58 +02:00
|
|
|
version('testcontainers', '1.20.0')
|
2022-11-16 23:12:46 +01: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')
|
|
|
|
library('junit-vintage-engine', 'org.junit.vintage', 'junit-vintage-engine').versionRef('junit')
|
2024-04-13 19:30:30 +02:00
|
|
|
library('junit-jupiter-platform-launcher', 'org.junit.platform', 'junit-platform-launcher').version('1.10.1')
|
2022-11-16 23:12:46 +01:00
|
|
|
library('hamcrest', 'org.hamcrest', 'hamcrest-library').version('2.2')
|
|
|
|
library('junit4', 'junit', 'junit').version('4.13.2')
|
2024-04-21 10:19:27 +02:00
|
|
|
library('mockito-core', 'org.mockito', 'mockito-core').version('5.11.0')
|
|
|
|
library('mockito-junit-jupiter', 'org.mockito', 'mockito-junit-jupiter').version('5.11.0')
|
2024-07-23 22:00:58 +02:00
|
|
|
library('testcontainers', 'org.testcontainers', 'testcontainers').versionRef('testcontainers')
|
|
|
|
library('testcontainers-junit-jupiter', 'org.testcontainers', 'junit-jupiter').versionRef('testcontainers')
|
2022-11-16 23:12:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-29 18:54:29 +01:00
|
|
|
include 'files-api'
|
2021-11-29 15:44:33 +01:00
|
|
|
include 'files-ftp'
|
|
|
|
include 'files-ftp-fs'
|
2024-05-01 22:52:19 +02:00
|
|
|
include 'files-ftp-mock'
|
2021-11-29 15:44:33 +01:00
|
|
|
include 'files-sftp'
|
|
|
|
include 'files-sftp-fs'
|
2024-05-24 17:59:07 +02:00
|
|
|
include 'files-jadaptive-sftp'
|
2024-07-23 22:00:58 +02:00
|
|
|
include 'files-jsch'
|
2021-11-29 15:44:33 +01:00
|
|
|
include 'files-webdav'
|
|
|
|
include 'files-webdav-fs'
|