mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-01 01:35:59 +01:00
4133eb175c
Introducing Smack's own XmlPullParser interface which tries to stay as compatible as possible to XPP3. The interface is used to either wrap StAX's XMLStreamReader if Smack is used on Java SE, and XPP3's XmlPullParser if Smack is used on on Android. Fixes SMACK-591. Also introduce JUnit 5 and non-strict javadoc projects.
13 lines
287 B
Groovy
13 lines
287 B
Groovy
description = """\
|
|
Smack XML parser using XPP3."""
|
|
|
|
ext {
|
|
xpp3Version = "1.1.4c"
|
|
}
|
|
|
|
dependencies {
|
|
api "xpp3:xpp3_min:$xpp3Version"
|
|
implementation "xpp3:xpp3:$xpp3Version"
|
|
api project(':smack-xmlparser')
|
|
testCompile project(path: ":smack-xmlparser", configuration: "testRuntime")
|
|
}
|