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.
j2html/settings.gradle

39 lines
1.5 KiB
Groovy

pluginManagement {
repositories {
mavenLocal()
mavenCentral {
metadataSources {
mavenPom()
artifact()
ignoreGradleMetadataRedirection()
}
}
gradlePluginPortal()
}
}
dependencyResolutionManagement {
versionCatalogs {
libs {
version('gradle', '8.5')
library('jsoup', 'org.jsoup', 'jsoup').version('1.17.2')
library('javapoet', 'com.squareup', 'javapoet').version('1.13.0')
}
testLibs {
version('junit', '5.10.1')
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-platform-launcher', 'org.junit.platform', 'junit-platform-launcher').version('1.10.1')
library('hamcrest', 'org.hamcrest', 'hamcrest-library').version('2.2')
library('mockito-core', 'org.mockito', 'mockito-core').version('3.12.4')
library('velocity', 'org.apache.velocity', 'velocity-engine-core').version('2.3')
library('junit-benchmarks', 'com.carrotsearch', 'junit-benchmarks').version('0.7.2')
}
}
}
include ':javapoet'
include ':j2html-codegen'
include ':j2html'