@@ -24,47 +24,52 @@ dependencies {
24
24
25
25
// Geode-common has annotations and other pieces used by geode-logging
26
26
api(project(' :geode-common' ))
27
+
27
28
implementation(project(' :geode-logging' ))
29
+ implementation(project(' :geode-serialization' ))
30
+ implementation(project(' :geode-tcp-server' ))
31
+
28
32
implementation(' org.apache.logging.log4j:log4j-api' )
29
33
implementation(' org.jgroups:jgroups' )
30
34
implementation(' org.apache.commons:commons-lang3' )
31
35
implementation(' it.unimi.dsi:fastutil' )
32
36
implementation(' com.github.stephenc.findbugs:findbugs-annotations' )
33
37
// Commons validator is used to validate inet addresses in membership
34
38
implementation(' commons-validator:commons-validator' )
35
-
36
- implementation(project(' :geode-serialization' ))
37
- implementation(project(' :geode-tcp-server' ))
38
39
// Jgroups is a core component of our membership system.
39
40
implementation(' org.jgroups:jgroups' )
40
41
42
+
41
43
testImplementation(project(' :geode-junit' ))
42
44
testImplementation(project(' :geode-concurrency-test' ))
43
45
44
46
testImplementation(' org.mockito:mockito-core' )
45
47
testImplementation(' junit:junit' )
46
48
testImplementation(' org.assertj:assertj-core' )
49
+ testImplementation(' com.tngtech.archunit:archunit-junit4' )
47
50
48
51
testRuntime(project(path : ' :geode-old-versions' , configuration : ' testOutput' ))
49
52
53
+
50
54
integrationTestImplementation(project(' :geode-junit' ))
55
+ integrationTestImplementation(' com.tngtech.archunit:archunit-junit4' )
51
56
integrationTestImplementation(' pl.pragmatists:JUnitParams' )
57
+
58
+ integrationTestRuntime(' org.apache.logging.log4j:log4j-core' )
59
+
60
+
52
61
distributedTestImplementation(project(' :geode-junit' ))
53
62
distributedTestImplementation(project(' :geode-dunit' ))
54
- integrationTestRuntime(' org.apache.logging.log4j:log4j-core' )
55
63
distributedTestImplementation(' pl.pragmatists:JUnitParams' )
64
+
56
65
distributedTestRuntimeOnly(project(path : ' :geode-old-versions' , configuration : ' testOutput' ))
57
- upgradeTestRuntimeOnly(project(path : ' :geode-old-versions' , configuration : ' testOutput' ))
58
66
59
- testImplementation(' com.tngtech.archunit:archunit-junit4' )
60
67
61
- integrationTestImplementation(' com.tngtech.archunit:archunit-junit4' )
62
-
68
+ upgradeTestRuntimeOnly(project(path : ' :geode-old-versions' , configuration : ' testOutput' ))
63
69
}
64
70
65
71
distributedTest {
66
72
// Some tests have inner tests that should be ignored
67
73
exclude " **/*\$ *.class"
68
74
}
69
75
70
-
0 commit comments