38 lines
1.4 KiB
Groovy
38 lines
1.4 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 ':j2html-codegen'
|
||
|
include ':j2html'
|