Commons JXPath.
A Java-based implementation of XPath 1.0 that, in addition to XML processing, can inspect/modify Java object graphs (the library's explicit purpose) and even mixed Java/XML structures..
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.3</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.
Apache License.
The commons-jxpath-1.3 has 8 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.1 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. | 1966 |
XML Parser | xml-apis 1.3.04 xml-commons provides an Apache-hosted set of DOM, SAX, and JAXP interfaces for use in other xml-based projects. Our hope is that we can standardize on both a common version and packaging scheme for these critical XML standards interfaces to make the lives of both our developers ... | 88 |
The following table lists the most popular artifacts which are depending on commons-jxpath-1.3. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Network | operadriver 1.5 OperaDriver is a vendor-supported WebDriver implementation developed by Opera Software and volunteers that implements WebDriver's wire protocol. | 12 |
Data Structure | commons-configuration 1.7 Tools to assist in the reading of configuration/preferences files in various formats | 44 |
Build | maven-project 3.0-alpha-2 This library is used to not only read Maven project object model files, but to assemble inheritence and to retrieve remote models as required. | 5 |
Data Structure | commons-configuration 1.6 Tools to assist in the reading of configuration/preferences files in various formats | 156 |
Network | operadriver 1.1 OperaDriver is a vendor-supported WebDriver implementation developed by Opera Software and volunteers that implements WebDriver's wire protocol. | 21 |
Data Structure | commons-configuration 1.8 Tools to assist in the reading of configuration/preferences files in various formats | 72 |
Data Structure | commons-configuration 1.9 Tools to assist in the reading of configuration/preferences files in various formats | 15 |
The following plugins are used in the commons-jxpath-1.3.jar
The following packages are defined in the commons-jxpath-1.3.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.
<?xml version="1.0" encoding="ISO-8859-1"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <parent> <groupId>org.apache.commons</groupId> <artifactId>commons-parent</artifactId> <version>11</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>commons-jxpath</groupId> <artifactId>commons-jxpath</artifactId> <name>Commons JXPath</name> <!-- when cutting a release, be sure to modify the commons.release.version property, found at /project/properties/commons.release.version in this document --> <version>1.3</version> <description>A Java-based implementation of XPath 1.0 that, in addition to XML processing, can inspect/modify Java object graphs (the library's explicit purpose) and even mixed Java/XML structures.</description> <url>http://commons.apache.org/jxpath/</url> <issueManagement> <system>jira</system> <url>http://issues.apache.org/jira/browse/JXPATH</url> </issueManagement> <inceptionYear>2001</inceptionYear> <scm> <connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/jxpath/trunk</connection> <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/jxpath/trunk</developerConnection> <url>http://svn.apache.org/repos/asf/commons/proper/jxpath/trunk</url> </scm> <properties> <commons.componentid>jxpath</commons.componentid> <!-- should agree with project.version for releases: --> <commons.release.version>1.3</commons.release.version> <commons.binary.suffix /> <commons.jira.id>JXPATH</commons.jira.id> <commons.jira.pid>12310480</commons.jira.pid> </properties> <build> <sourceDirectory>src/java</sourceDirectory> <testSourceDirectory>src/test</testSourceDirectory> <testResources> <testResource> <directory>src/test</directory> <includes> <include>**/*.xml</include> </includes> </testResource> </testResources> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <includes> <include>**/*Test.java</include> </includes> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptors> <descriptor>src/assembly/bin.xml</descriptor> <descriptor>src/assembly/src.xml</descriptor> </descriptors> <tarLongFileMode>gnu</tarLongFileMode> </configuration> </plugin> </plugins> </build> <dependencyManagement> <dependencies> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.1.1</version> <scope>runtime</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> <version>2.4.0</version> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.4</version> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>jsp-api</artifactId> <version>2.0</version> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> <version>1.3.04</version> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>jdom</groupId> <artifactId>jdom</artifactId> <version>1.0</version> <optional>true</optional> </dependency> <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> <version>1.7.0</version> <optional>true</optional> </dependency> <dependency> <groupId>com.mockrunner</groupId> <artifactId>mockrunner-jdk1.3-j2ee1.3</artifactId> <version>0.4</version> <scope>test</scope> <exclusions> <exclusion> <groupId>cglib-nodep</groupId> <artifactId>cglib-nodep</artifactId> </exclusion> <exclusion> <groupId>jboss</groupId> <artifactId>jboss-jee</artifactId> </exclusion> <exclusion> <groupId>nekohtml</groupId> <artifactId>nekohtml</artifactId> </exclusion> <exclusion> <groupId>struts</groupId> <artifactId>struts</artifactId> </exclusion> <exclusion> <groupId>oro</groupId> <artifactId>oro</artifactId> </exclusion> <exclusion> <groupId>commons-validator</groupId> <artifactId>commons-validator</artifactId> </exclusion> <exclusion> <groupId>commons-digester</groupId> <artifactId>commons-digester</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <reporting> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>taglist-maven-plugin</artifactId> <version>2.2</version> </plugin> <plugin> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.1</version> <configuration> <configLocation>${basedir}/checkstyle.xml</configLocation> <excludes>org/apache/commons/jxpath/ri/parser/*</excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> <version>2.3</version> <configuration> <targetJdk>1.3</targetJdk> <excludes> <exclude>org/apache/commons/jxpath/ri/parser/*</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>1.2</version> <configuration> <excludeFilterFile>conf/findbugs-exclude-filter.xml</excludeFilterFile> <xmlOutput>true</xmlOutput> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.4</version> <configuration> <linksource>true</linksource> <links> <link>http://java.sun.com/j2se/1.3/docs/api/</link> <link>http://java.sun.com/javaee/5/docs/api/</link> <link>http://commons.apache.org/beanutils/apidocs/</link> <link>http://www.jdom.org/docs/apidocs/</link> </links> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>rat-maven-plugin</artifactId> <version>1.0-alpha-3</version> <configuration> <excludes> <exclude>src/java/org/apache/commons/jxpath/ri/parser/*</exclude> <exclude>src/conf/MANIFEST.MF</exclude> <exclude>xdocs/style/project.css</exclude> </excludes> </configuration> </plugin> </plugins> </reporting> <distributionManagement> <site> <id>apache.website</id> <name>Default Site</name> <url>scp://people.apache.org/www/commons.apache.org/jxpath/</url> </site> </distributionManagement> </project>