commons-jxpath
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>commons-jxpath</groupId> <artifactId>commons-jxpath</artifactId> <version>1.4.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- 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 https://maven.apache.org/maven-v4_0_0.xsd"> <parent> <groupId>org.apache.commons</groupId> <artifactId>commons-parent</artifactId> <version>81</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>commons-jxpath</groupId> <artifactId>commons-jxpath</artifactId> <name>Apache 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.4.0</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>https://commons.apache.org/proper/commons-jxpath/</url> <issueManagement> <system>jira</system> <url>https://issues.apache.org/jira/browse/JXPATH</url> </issueManagement> <inceptionYear>2001</inceptionYear> <scm> <connection>scm:git:https://gitbox.apache.org/repos/asf/commons-jxpath</connection> <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/commons-jxpath</developerConnection> <url>https://gitbox.apache.org/repos/asf/commons-jxpath</url> </scm> <properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <!-- project.build.outputTimestamp is managed by Maven plugins, see https://maven.apache.org/guides/mini/guide-reproducible-builds.html --> <project.build.outputTimestamp>2025-04-13T20:04:44Z</project.build.outputTimestamp> <commons.componentid>jxpath</commons.componentid> <commons.module.name>org.apache.commons.jxpath</commons.module.name> <commons.release.version>1.4.0</commons.release.version> <commons.release.next>1.4.1</commons.release.next> <commons.release.isDistModule>true</commons.release.isDistModule> <commons.rc.version>RC2</commons.rc.version> <commons.bc.version>1.3</commons.bc.version> <commons.release.desc>(Java 8 or above)</commons.release.desc> <commons.jira.id>JXPATH</commons.jira.id> <commons.jira.pid>12310480</commons.jira.pid> <commons.osgi.import>*;resolution:=optional</commons.osgi.import> <!-- JaCoCo: Don't make code coverage worse than: --> <commons.jacoco.haltOnFailure>true</commons.jacoco.haltOnFailure> <commons.jacoco.classRatio>0.91</commons.jacoco.classRatio> <commons.jacoco.instructionRatio>0.74</commons.jacoco.instructionRatio> <commons.jacoco.methodRatio>0.82</commons.jacoco.methodRatio> <commons.jacoco.branchRatio>0.68</commons.jacoco.branchRatio> <commons.jacoco.lineRatio>0.77</commons.jacoco.lineRatio> <commons.jacoco.complexityRatio>0.64</commons.jacoco.complexityRatio> </properties> <build> <defaultGoal>clean apache-rat:check verify japicmp:cmp checkstyle:check pmd:check javadoc:javadoc</defaultGoal> <plugins> <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> <configuration> <excludes> <exclude>src/java/org/apache/commons/jxpath/ri/parser/*</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-scm-publish-plugin</artifactId> <configuration> <ignorePathsToDelete> <ignorePathToDelete>javadocs</ignorePathToDelete> </ignorePathsToDelete> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <linksource>true</linksource> <links> <link>${commons.javadoc.javaee.link}</link> <link>https://commons.apache.org/proper/commons-lang/apidocs</link> <!-- http://www.jdom.org/docs/apidocs/ is not a secure link --> <link>https://javadoc.io/doc/org.jdom/jdom/1.1</link> </links> <excludePackageNames>org.apache.commons.jxpath.ri.parser</excludePackageNames> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <configuration> <configLocation>${basedir}/src/conf/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> <configuration> <targetJdk>${maven.compiler.target}</targetJdk> <excludes> <exclude>org/apache/commons/jxpath/ri/parser/*</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-maven-plugin</artifactId> <configuration> <excludeFilterFile>${basedir}/src/conf/findbugs-exclude-filter.xml</excludeFilterFile> <xmlOutput>true</xmlOutput> </configuration> </plugin> </plugins> </build> <dependencyManagement> <dependencies> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.3.5</version> <scope>runtime</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</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>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jdom</groupId> <artifactId>jdom</artifactId> <version>1.1.3</version> <optional>true</optional> </dependency> <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> <version>1.10.1</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> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.17.0</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.19.0</version> <scope>test</scope> </dependency> </dependencies> <reporting> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>taglist-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <configuration> <configLocation>${basedir}/src/conf/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> <configuration> <targetJdk>${maven.compiler.target}</targetJdk> <excludes> <exclude>org/apache/commons/jxpath/ri/parser/*</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-maven-plugin</artifactId> <configuration> <excludeFilterFile>${basedir}/src/conf/findbugs-exclude-filter.xml</excludeFilterFile> <xmlOutput>true</xmlOutput> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <linksource>true</linksource> <links> <link>${commons.javadoc.javaee.link}</link> <link>https://commons.apache.org/proper/commons-lang/apidocs</link> <!-- http://www.jdom.org/docs/apidocs/ is not a secure link --> <link>https://javadoc.io/doc/org.jdom/jdom/1.1</link> </links> <excludePackageNames>org.apache.commons.jxpath.ri.parser</excludePackageNames> </configuration> </plugin> <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> <configuration> <excludes> <exclude>src/java/org/apache/commons/jxpath/ri/parser/*</exclude> </excludes> </configuration> </plugin> </plugins> </reporting> <distributionManagement> <site> <id>apache.website</id> <name>Apache Commons Site</name> <url>scm:svn:https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-jxpath/</url> </site> </distributionManagement> <ciManagement> <system>GitHub</system> <url>https://github.com/apache/commons-jaxpth/actions</url> </ciManagement> <profiles> <profile> <id>java-8</id> <activation> <jdk>8</jdk> </activation> <properties> <!-- Javadoc 8 expects a package-list file in the Javadoc root but current Java versions generate an element-list file. --> <commons.javadoc.failOnWarnings>true</commons.javadoc.failOnWarnings> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <linksource>true</linksource> <links> <link>${commons.javadoc.javaee.link}</link> <link>https://commons.apache.org/proper/commons-lang/apidocs</link> <!-- http://www.jdom.org/docs/apidocs/ is not a secure link --> <link>https://javadoc.io/doc/org.jdom/jdom/1.1</link> </links> <excludePackageNames>org.apache.commons.jxpath.ri.parser</excludePackageNames> </configuration> </plugin> </plugins> </build> </profile> </profiles> <developers> <developer> <id>dmitri</id> <name>Dmitri Plotnikov</name> <email>dmitri@apache.org</email> <organization /> </developer> <developer> <id>craigmcc</id> <name>Craig McClanahan</name> <email>Craig.McClanahan@eng.sun.com</email> <organization>Sun Microsystems</organization> </developer> <developer> <id>mbenson</id> <name>Matt Benson</name> <email>mbenson@apache.org</email> </developer> <developer> <id>ggregory</id> <name>Gary Gregory</name> <email>ggregory at apache.org</email> <url>https://www.garygregory.com</url> <organization>The Apache Software Foundation</organization> <organizationUrl>https://www.apache.org/</organizationUrl> <roles> <role>PMC Member</role> </roles> <timezone>America/New_York</timezone> <properties> <picUrl>https://people.apache.org/~ggregory/img/garydgregory80.png</picUrl> </properties> </developer> </developers> <contributors> <contributor> <name>Michele Vivoda</name> </contributor> <contributor> <name>Uwe Barthel</name> </contributor> </contributors> </project>