49 lines
2 KiB
Groovy
49 lines
2 KiB
Groovy
pluginManagement {
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral {
|
|
metadataSources {
|
|
mavenPom()
|
|
artifact()
|
|
ignoreGradleMetadataRedirection()
|
|
}
|
|
}
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
versionCatalogs {
|
|
libs {
|
|
version('gradle', '8.7')
|
|
version('groovy', '3.0.22')
|
|
library('groovy-core', 'org.codehaus.groovy', 'groovy').versionRef('groovy')
|
|
library('files-ftp-fs', 'org.xbib', 'files-ftp-fs').version('4.8.0')
|
|
library('files-sftp-fs', 'org.xbib', 'files-sftp-fs').version('4.8.0')
|
|
library('jgit', 'org.eclipse.jgit', 'org.eclipse.jgit').version('6.10.0.202406032230-r')
|
|
library('mail', 'com.sun.mail', 'javax.mail').version('1.6.2')
|
|
}
|
|
testLibs {
|
|
version('junit', '5.10.2')
|
|
version('spock', '2.3-groovy-3.0')
|
|
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-jupiter-vintage', 'org.junit.vintage', 'junit-vintage-engine').versionRef('junit')
|
|
library('junit-jupiter-platform-launcher', 'org.junit.platform', 'junit-platform-launcher').version('1.10.1')
|
|
library('junit4', 'junit', 'junit').version('4.13.2')
|
|
library('hamcrest', 'org.hamcrest', 'hamcrest-library').version('2.2')
|
|
library('spock-core', 'org.spockframework', 'spock-core').versionRef('spock')
|
|
library('spock-junit4', 'org.spockframework', 'spock-junit4').versionRef('spock')
|
|
}
|
|
}
|
|
}
|
|
|
|
include 'groovy-crypt'
|
|
include 'groovy-ftp'
|
|
include 'groovy-ftps'
|
|
include 'groovy-git'
|
|
include 'groovy-git-annotations'
|
|
include 'groovy-ldap'
|
|
include 'groovy-mail'
|
|
include 'groovy-sshd'
|