Skip to content

Commit cd40455

Browse files
committed
[smack-integration-test] Bump reflections to 0.9.12
This also means that smack-integration-test needs to declare a dependency on Guava, which was previously available as transitive dependency of 'reflections' 0.9.11.
1 parent fe32142 commit cd40455

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ allprojects {
128128
junitVersion = '5.6.2'
129129
commonsIoVersion = '2.6'
130130
bouncyCastleVersion = '1.68'
131+
guavaVersion = '30.1-jre'
131132

132133
if (project.hasProperty("useSonatype")) {
133134
useSonatype = project.getProperty("useSonatype").toBoolean()

smack-core/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ dependencies {
3333
testFixturesApi "org.assertj:assertj-core:3.11.1"
3434
testFixturesApi "org.xmlunit:xmlunit-assertj:$xmlUnitVersion"
3535
testFixturesApi 'org.hamcrest:hamcrest-library:2.2'
36-
testFixturesApi 'com.google.guava:guava:28.2-jre'
36+
testFixturesApi "com.google.guava:guava:${guavaVersion}"
3737
}
3838

3939
class CreateFileTask extends DefaultTask {

smack-integration-test/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ applicationDefaultJvmArgs = ["-enableassertions"]
99
dependencies {
1010
api project(':smack-java8-full')
1111
api project(':smack-resolver-dnsjava')
12-
compile 'org.reflections:reflections:0.9.11'
12+
implementation "com.google.guava:guava:${guavaVersion}"
13+
compile 'org.reflections:reflections:0.9.12'
1314
compile 'eu.geekplace.javapinning:java-pinning-java7:1.1.0-alpha1'
1415
compile group: 'commons-io', name: 'commons-io', version: "$commonsIoVersion"
1516
api "org.junit.jupiter:junit-jupiter-api:$junitVersion"

0 commit comments

Comments
 (0)