mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-10-31 17:25:58 +01:00
[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.
This commit is contained in:
parent
fe3214291d
commit
cd40455b62
3 changed files with 4 additions and 2 deletions
|
@ -128,6 +128,7 @@ allprojects {
|
||||||
junitVersion = '5.6.2'
|
junitVersion = '5.6.2'
|
||||||
commonsIoVersion = '2.6'
|
commonsIoVersion = '2.6'
|
||||||
bouncyCastleVersion = '1.68'
|
bouncyCastleVersion = '1.68'
|
||||||
|
guavaVersion = '30.1-jre'
|
||||||
|
|
||||||
if (project.hasProperty("useSonatype")) {
|
if (project.hasProperty("useSonatype")) {
|
||||||
useSonatype = project.getProperty("useSonatype").toBoolean()
|
useSonatype = project.getProperty("useSonatype").toBoolean()
|
||||||
|
|
|
@ -33,7 +33,7 @@ dependencies {
|
||||||
testFixturesApi "org.assertj:assertj-core:3.11.1"
|
testFixturesApi "org.assertj:assertj-core:3.11.1"
|
||||||
testFixturesApi "org.xmlunit:xmlunit-assertj:$xmlUnitVersion"
|
testFixturesApi "org.xmlunit:xmlunit-assertj:$xmlUnitVersion"
|
||||||
testFixturesApi 'org.hamcrest:hamcrest-library:2.2'
|
testFixturesApi 'org.hamcrest:hamcrest-library:2.2'
|
||||||
testFixturesApi 'com.google.guava:guava:28.2-jre'
|
testFixturesApi "com.google.guava:guava:${guavaVersion}"
|
||||||
}
|
}
|
||||||
|
|
||||||
class CreateFileTask extends DefaultTask {
|
class CreateFileTask extends DefaultTask {
|
||||||
|
|
|
@ -9,7 +9,8 @@ applicationDefaultJvmArgs = ["-enableassertions"]
|
||||||
dependencies {
|
dependencies {
|
||||||
api project(':smack-java8-full')
|
api project(':smack-java8-full')
|
||||||
api project(':smack-resolver-dnsjava')
|
api project(':smack-resolver-dnsjava')
|
||||||
compile 'org.reflections:reflections:0.9.11'
|
implementation "com.google.guava:guava:${guavaVersion}"
|
||||||
|
compile 'org.reflections:reflections:0.9.12'
|
||||||
compile 'eu.geekplace.javapinning:java-pinning-java7:1.1.0-alpha1'
|
compile 'eu.geekplace.javapinning:java-pinning-java7:1.1.0-alpha1'
|
||||||
compile group: 'commons-io', name: 'commons-io', version: "$commonsIoVersion"
|
compile group: 'commons-io', name: 'commons-io', version: "$commonsIoVersion"
|
||||||
api "org.junit.jupiter:junit-jupiter-api:$junitVersion"
|
api "org.junit.jupiter:junit-jupiter-api:$junitVersion"
|
||||||
|
|
Loading…
Reference in a new issue