Skip to content

Commit f352695

Browse files
author
Riyad Kalla
committed
Clarified dependency wording.
1 parent 4b8a116 commit f352695

File tree

1 file changed

+20
-12
lines changed

1 file changed

+20
-12
lines changed

lib/DEPENDENCIES

+20-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,23 @@
11
Simple Java XML Parser - Library Dependencies
22
---------------------------------------------
3+
4+
* xpp3-1.1.4c.jar
5+
Required: Any non-Android Java Platform (web service, web app, client, etc.)
6+
Not-Required: Android application
37

4-
* junit-4.8.2.jar - As expected, this library is only needed in the classpath
5-
at runtime if you plan on running the test cases. For normal deployment
6-
into production, you can leave junit off your classpath.
7-
8-
* xpp3-1.1.4c.jar - This library provides the default implementation for the
9-
XML Pull Parsing spec that SJXP will use. You need this library in your
10-
classpath in all cases *except* when deploying SJXP inside of an Android
11-
application.
12-
13-
Conveniently enough the Android runtime already provides an
14-
XML Pull Parser implementation (it is a modified version of XPP3) so you can
15-
just ship the tiny sjxp JAR with your Android app and that's all you need.
8+
This library provides the default implementation for the XML Pull Parsing
9+
spec that SJXP will use. You need this library in your Classpath in all
10+
cases *except* when deploying SJXP inside of an Android application.
11+
12+
The Android runtime already provides this dependency, so when deploying to
13+
Android you only need the sjxp JAR by itself as part of your app.
14+
15+
* junit-4.8.2.jar
16+
Required: Optional
17+
18+
As expected, this library is only needed in the classpath at compile or
19+
runtime if you plan on working with or running the test cases in the
20+
/src/main/test folder.
21+
22+
If you aren't working with the test cases, this JAR can be omitted from your
23+
deployment.

0 commit comments

Comments
 (0)