You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
groovy-extensions/settings.gradle

50 lines
2.0 KiB
Groovy

pluginManagement {
repositories {
mavenLocal()
mavenCentral {
metadataSources {
mavenPom()
artifact()
ignoreGradleMetadataRedirection()
}
}
gradlePluginPortal()
}
}
dependencyResolutionManagement {
versionCatalogs {
libs {
version('gradle', '8.7')
version('groovy', '4.0.22')
library('groovy-core', 'org.apache.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('spock', '2.3-groovy-4.0')
version('junit', '5.10.2')
library('spock-core', 'org.spockframework', 'spock-core').versionRef('spock')
library('spock-junit4', 'org.spockframework', 'spock-junit4').versionRef('spock')
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')
}
}
}
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'