JXPath.
A package of Java utility methods for accessing and modifying object properties.
Here is the list of declaration for commons-jxpath. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>commons-jxpath</groupId> <artifactId>commons-jxpath</artifactId> <version>1.2</version> </dependency>
If you think this Maven repository POM file listing for commons-jxpath is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The Apache Software License, Version 2.0
URL: /LICENSE.txt.
The commons-jxpath-1.2 has 9 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JUnit | junit 3.8 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 111 |
The following table lists the most popular artifacts which are depending on commons-jxpath-1.2. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Data Structure | commons-configuration 1.5 Tools to assist in the reading of configuration/preferences files in various formats | 55 |
XML | mule-module-xml 2.0.0 Functionality for working with XML | 5 |
XML | mule-module-xml 2.0.2 Functionality for working with XML | 7 |
XML | mule-module-xml 2.0.0-RC2 Functionality for working with XML | 7 |
XML | mule-module-xml 2.0.1 Functionality for working with XML | 6 |
Data Structure | commons-configuration 1.4 Tools to assist in the reading of configuration/preferences files in various formats | 5 |
XML | mule-module-xml 2.0.0-RC3 Functionality for working with XML | 5 |
The following plugins are used in the commons-jxpath-1.2.jar
The following packages are defined in the commons-jxpath-1.2.jar
org.apache.commons.jxpath org.apache.commons.jxpath.functions org.apache.commons.jxpath.ri org.apache.commons.jxpath.ri.axes org.apache.commons.jxpath.ri.compiler org.apache.commons.jxpath.ri.model org.apache.commons.jxpath.ri.model.beans org.apache.commons.jxpath.ri.model.container org.apache.commons.jxpath.ri.model.dom org.apache.commons.jxpath.ri.model.dynabeans org.apache.commons.jxpath.ri.model.dynamic org.apache.commons.jxpath.ri.model.jdom org.apache.commons.jxpath.ri.parser org.apache.commons.jxpath.servlet org.apache.commons.jxpath.util org.apache.commons.jxpath.xml
Here is the content of the POM file.
<project> <modelVersion>4.0.0</modelVersion> <groupId>commons-jxpath</groupId> <artifactId>commons-jxpath</artifactId> <name>JXPath</name> <version>1.2</version> <description>A package of Java utility methods for accessing and modifying object properties</description> <url>http://jakarta.apache.org/commons/${pom.artifactId.substring(8)}/</url> <issueManagement> <url>http://issues.apache.org/bugzilla/</url> </issueManagement> <ciManagement> <notifiers> <notifier> <configuration> <address>commons-dev@jakarta.apache.org</address> </configuration> </notifier> </notifiers> </ciManagement> <inceptionYear>2001</inceptionYear> <mailingLists> <mailingList> <name>Commons Dev List</name> <subscribe>commons-dev-subscribe@jakarta.apache.org</subscribe> <unsubscribe>commons-dev-unsubscribe@jakarta.apache.org</unsubscribe> <archive>http://nagoya.apache.org/eyebrowse/SummarizeList?listName=commons-dev@jakarta.apache.org</archive> </mailingList> <mailingList> <name>Commons User List</name> <subscribe>commons-user-subscribe@jakarta.apache.org</subscribe> <unsubscribe>commons-user-unsubscribe@jakarta.apache.org</unsubscribe> <archive>http://nagoya.apache.org/eyebrowse/SummarizeList?listName=commons-user@jakarta.apache.org</archive> </mailingList> </mailingLists> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>/LICENSE.txt</url> </license> </licenses> <scm> <connection>scm:cvs:pserver:anoncvs@cvs.apache.org:/home/cvspublic:jakarta-commons/${pom.artifactId.substring(8)}</connection> <url>http://cvs.apache.org/viewcvs/jakarta-commons/${pom.artifactId.substring(8)}/</url> </scm> <organization> <name>The Apache Software Foundation</name> <url>http://jakarta.apache.org</url> </organization> <build> <sourceDirectory>src/java</sourceDirectory> <testSourceDirectory>src/test</testSourceDirectory> <testResources> <testResource> <directory>${pom.build.unitTestSourceDirectory}</directory> <includes> <include>**/*.xml</include> </includes> </testResource> </testResources> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <includes> <include>**/*Test.java</include> </includes> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>xerces</groupId> <artifactId>xerces</artifactId> <version>1.2.3</version> </dependency> <dependency> <groupId>servletapi</groupId> <artifactId>servletapi</artifactId> <version>2.2</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8</version> </dependency> <dependency> <groupId>ant</groupId> <artifactId>ant-optional</artifactId> <version>1.5.1</version> </dependency> <dependency> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> <version>2.0.2</version> </dependency> <dependency> <groupId>jdom</groupId> <artifactId>jdom</artifactId> <version>b9</version> </dependency> <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> <version>1.4</version> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>2.0</version> </dependency> </dependencies> <distributionManagement> <repository> <id>default</id> <name>Default Repository</name> <url>file:///www/jakarta.apache.org/builds/jakarta-commons/${pom.artifactId.substring(8)}/</url> </repository> <site> <id>default</id> <name>Default Site</name> <url>scp://jakarta.apache.org//www/jakarta.apache.org/commons/${pom.artifactId.substring(8)}/</url> </site> </distributionManagement> </project>