alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Commons JXPath example source code file (pom.xml)

This example Commons JXPath source code file (pom.xml) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Commons JXPath tags/keywords

apache, apache, asf, asf, conditions, foundation, java-based, license, license, microsystems, of, see, see, you

The Commons JXPath pom.xml source code

<?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
    <artifactId>commons-parent
    <version>11
  </parent>
  <modelVersion>4.0.0
  <groupId>commons-jxpath
  <artifactId>commons-jxpath
  <name>Commons JXPath
  <!-- 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
  <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.
  <url>http://commons.apache.org/jxpath/
  <issueManagement>
    <system>jira
    <url>http://issues.apache.org/jira/browse/JXPATH
  </issueManagement>
  <inceptionYear>2001
  <developers>
    <developer>
      <id>dmitri
      <name>Dmitri Plotnikov
      <email>dmitri@apache.org
      <organization />
    </developer>
    <developer>
      <id>craigmcc
      <name>Craig McClanahan
      <email>Craig.McClanahan@eng.sun.com
      <organization>Sun Microsystems
    </developer>
    <developer>
      <id>mbenson
      <name>Matt Benson
      <email>mbenson@apache.org
    </developer>
  </developers>
  <scm>
    <connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/jxpath/trunk
    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/jxpath/trunk
    <url>http://svn.apache.org/repos/asf/commons/proper/jxpath/trunk
  </scm>

  <properties>
    <commons.componentid>jxpath
    <!-- should agree with project.version for releases: -->
    <commons.release.version>1.3
    <commons.binary.suffix />
    <commons.jira.id>JXPATH
    <commons.jira.pid>12310480
  </properties> 

  <build>
    <sourceDirectory>src/java
    <testSourceDirectory>src/test
    <testResources>
      <testResource>
        <directory>src/test
        <includes>
          <include>**/*.xml
        </includes>
      </testResource>
    </testResources>
    <plugins>
      <plugin>
        <artifactId>maven-surefire-plugin
        <configuration>
          <includes>
            <include>**/*Test.java
          </includes>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-assembly-plugin
        <configuration>
          <descriptors>
            <descriptor>src/assembly/bin.xml
            <descriptor>src/assembly/src.xml
          </descriptors>
          <tarLongFileMode>gnu
        </configuration>
      </plugin>
    </plugins>
  </build>
  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>commons-logging
        <artifactId>commons-logging
        <version>1.1.1
        <scope>runtime
      </dependency>
    </dependencies>
  </dependencyManagement>
  <dependencies>
    <dependency>
      <groupId>xerces
      <artifactId>xercesImpl
      <version>2.4.0
      <scope>provided
      <optional>true
    </dependency>
    <dependency>
      <groupId>javax.servlet
      <artifactId>servlet-api
      <version>2.4
      <scope>provided
      <optional>true
    </dependency>
    <dependency>
      <groupId>javax.servlet
      <artifactId>jsp-api
      <version>2.0
      <scope>provided
      <optional>true
    </dependency>
    <dependency>
      <groupId>junit
      <artifactId>junit
      <version>3.8.1
      <scope>test
    </dependency>
    <dependency>
      <groupId>xml-apis
      <artifactId>xml-apis
      <version>1.3.04
      <scope>provided
      <optional>true
    </dependency>
    <dependency>
      <groupId>jdom
      <artifactId>jdom
      <version>1.0
      <optional>true
    </dependency>
    <dependency>
      <groupId>commons-beanutils
      <artifactId>commons-beanutils
      <version>1.7.0
      <optional>true
    </dependency>
    <dependency>
      <groupId>com.mockrunner
      <artifactId>mockrunner-jdk1.3-j2ee1.3
      <version>0.4
      <scope>test
      <exclusions>
        <exclusion>
          <groupId>cglib-nodep
          <artifactId>cglib-nodep
        </exclusion>
        <exclusion>
          <groupId>jboss
          <artifactId>jboss-jee
        </exclusion>
        <exclusion>
          <groupId>nekohtml
          <artifactId>nekohtml
        </exclusion>
        <exclusion>
          <groupId>struts
          <artifactId>struts
        </exclusion>
        <exclusion>
          <groupId>oro
          <artifactId>oro
        </exclusion>
        <exclusion>
          <groupId>commons-validator
          <artifactId>commons-validator
        </exclusion>
        <exclusion>
          <groupId>commons-digester
          <artifactId>commons-digester
        </exclusion>
      </exclusions>
    </dependency>
  </dependencies>
  <reporting>
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo
        <artifactId>taglist-maven-plugin
        <version>2.2
      </plugin>
      <plugin>
        <artifactId>maven-checkstyle-plugin
        <version>2.1
        <configuration>
          <configLocation>${basedir}/checkstyle.xml
          <excludes>org/apache/commons/jxpath/ri/parser/*
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins
        <artifactId>maven-pmd-plugin
        <version>2.3
        <configuration>
          <targetJdk>1.3
          <excludes>
            <exclude>org/apache/commons/jxpath/ri/parser/*
          </excludes>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.codehaus.mojo
        <artifactId>findbugs-maven-plugin
        <version>1.2
        <configuration>
          <excludeFilterFile>conf/findbugs-exclude-filter.xml
          <xmlOutput>true
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins
        <artifactId>maven-javadoc-plugin
        <version>2.4
        <configuration>
          <linksource>true
          <links>
            <link>http://java.sun.com/j2se/1.3/docs/api/
            <link>http://java.sun.com/javaee/5/docs/api/
            <link>http://commons.apache.org/beanutils/apidocs/
            <link>http://www.jdom.org/docs/apidocs/ 
          </links>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.codehaus.mojo
        <artifactId>rat-maven-plugin
        <version>1.0-alpha-3
        <configuration>
          <excludes>
            <exclude>src/java/org/apache/commons/jxpath/ri/parser/*
            <exclude>src/conf/MANIFEST.MF
            <exclude>xdocs/style/project.css
          </excludes>
        </configuration>
      </plugin>
    </plugins>
  </reporting>
  <distributionManagement>
    <site>
      <id>apache.website
      <name>Default Site
      <url>scp://people.apache.org/www/commons.apache.org/jxpath/
    </site>
  </distributionManagement>
</project>

Other Commons JXPath examples (source code examples)

Here is a short list of links related to this Commons JXPath pom.xml source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.