-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
82 lines (66 loc) · 2.67 KB
/
settings.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
plugins {
id 'com.gradle.enterprise' version '3.8.1'
}
gradleEnterprise {
buildScan {
publishAlways()
termsOfServiceUrl = 'https://gradle.com/terms-of-service'
termsOfServiceAgree = 'yes'
}
}
rootProject.name = 'snapshot-tests'
include (
'snapshot-tests-core',
'snapshot-tests-bom',
// Internal utilities
'snapshot-tests-xmlunit',
'snapshot-tests-common',
'snapshot-tests-test-common',
// Test Framework support
'snapshot-tests-junit5',
'snapshot-tests-junit4',
// Supported data formats
'snapshot-tests-html',
'snapshot-tests-xml-legacy',
'snapshot-tests-xml',
'snapshot-tests-json',
// deprecated data module
'snapshot-tests-jaxb',
'snapshot-tests-jaxb-jakarta',
'snapshot-tests-jackson',
// External utilities
'snapshot-tests-directory-params',
'snapshot-tests-normalize',
'diff-tool',
// Docs and build support
'snapshot-tests-documentation',
"readme",
"test-coverage"
)
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
dependencyResolutionManagement {
versionCatalogs {
libs {
version('xmlunit', '2.9.1')
library('xmlunit-core', 'org.xmlunit', 'xmlunit-core').versionRef('xmlunit')
library('xmlunit-assertj', 'org.xmlunit', 'xmlunit-assertj').versionRef('xmlunit')
library('xmlunit-jakarta-jaxb-impl', 'org.xmlunit', 'xmlunit-jakarta-jaxb-impl').versionRef('xmlunit')
library('jaxb-api-legacy', 'javax.xml.bind:jaxb-api:2.3.1')
library('jaxb-runtime-legacy', 'org.glassfish.jaxb:jaxb-runtime:2.3.9')
library('jaxb-api-jakarta', 'jakarta.xml.bind:jakarta.xml.bind-api:4.0.1')
library('jaxb-runtime-jakarta', 'org.glassfish.jaxb:jaxb-runtime:4.0.4')
library('junit-bom', 'org.junit:junit-bom:5.10.1')
library('jackson-bom', 'com.fasterxml.jackson:jackson-bom:2.16.1')
library('assertj-core', 'org.assertj:assertj-core:3.25.1')
library('equalsverifier', 'nl.jqno.equalsverifier:equalsverifier:3.15.6')
library('apiguardian', 'org.apiguardian:apiguardian-api:1.1.2')
library('javadiffutils', 'io.github.java-diff-utils:java-diff-utils:4.12')
library('bytebuddy', 'net.bytebuddy:byte-buddy:1.12.22')
library('jsonassert', 'org.skyscreamer:jsonassert:1.5.1')
library('opentest4j', 'org.opentest4j:opentest4j:1.3.0')
library('jsoup', 'org.jsoup:jsoup:1.15.3')
library('junit4', 'junit:junit:4.13.2')
}
}
}
include 'diff-tool'