mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2025-12-05 20:51:07 +01:00
The previously used approach of
project(':smack-core').sourceSets.test.runtimeClasspath
caused the 'eclipse' target to produce duplicate classpath entries in
.classpath when run with Gradle >= 2.6. It also relied on Gradle
internals.
Instead we now use
project(path: ":smack-core", configuration: "testRuntime")
project(path: ":smack-core", configuration: "archives")
to be able to use test classes from other subprojects (usually
smack-core) in e.g. smack-extensions. The 'archives' configuration
includes the test jar.
See also https://discuss.gradle.org/t/11784
Thanks to Lari Hotari for helping with this issue.
10 lines
326 B
Groovy
10 lines
326 B
Groovy
description = """\
|
|
Smack slf4j debugger.
|
|
Inspect the exchanged XMPP stanzas.
|
|
Connect your favourite slf4j backend of choice to get output inside of it"""
|
|
|
|
dependencies {
|
|
compile project(':smack-core')
|
|
compile 'org.slf4j:slf4j-api:[1.7,1.8)'
|
|
testCompile project(path: ":smack-core", configuration: "testRuntime")
|
|
}
|