|
Commons Digester example source code file (pom.xml)
The Commons Digester pom.xml source code<?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 http://maven.apache.org/maven-v4_0_0.xsd"> <parent> <groupId>org.apache.commons <artifactId>commons-parent <version>17 </parent> <modelVersion>4.0.0 <name>Commons Digester <groupId>commons-digester <artifactId>commons-digester <version>2.1 <inceptionYear>2001 <description> The Digester package lets you configure an XML to Java object mapping module which triggers certain actions called rules whenever a particular pattern of nested XML elements is recognized. </description> <url>http://commons.apache.org/digester/ <issueManagement> <system>jira <url>http://issues.apache.org/jira/browse/DIGESTER </issueManagement> <scm> <connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/digester/tags/DIGESTER_2_1_RC2 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/digester/tags/DIGESTER_2_1_RC2 <url>http://svn.apache.org/viewvc/commons/proper/digester/tags/DIGESTER_2_1_RC2 </scm> <developers> <developer> <name>Craig McClanahan <id>craigmcc <email>craigmcc@apache.org </developer> <developer> <name>Robert Burrell Donkin <id>rdonkin <email>rdonkin@apache.org </developer> <developer> <name>Scott Sanders <id>sanders <email>sanders@totalsync.com </developer> <developer> <name>James Strachan <id>jstrachan <email>jstrachan@apache.org </developer> <developer> <name>Jason van Zyl <id>jvanzyl <email>jvanzyl@apache.org </developer> <developer> <name>Tim OBrien <id>tobrien <email>tobrien@apache.org </developer> <developer> <name>Jean-Francois Arcand <id>jfarcand <email>jfarcand@apache.org </developer> <developer> <name>Simon Kitching <id>skitching <email>skitching@apache.org </developer> <developer> <name>Rahul Akolkar <id>rahul <email>rahul AT apache DOT org </developer> <developer> <name>Simone Tripodi <id>simonetripodi <email>simonetripodi AT apache DOT org </developer> </developers> <contributors> <contributor> <name>Bradley M. Handy <email>bhandy@users.sf.net </contributor> <contributor> <name>Christopher Lenz </contributor> <contributor> <name>Ted Husted </contributor> <contributor> <name>David H. Martin </contributor> <contributor> <name>Henri Chen </contributor> <contributor> <name>Janek Bogucki </contributor> <contributor> <name>Mark Huisman </contributor> <contributor> <name>Paul Jack </contributor> <contributor> <name>Anton Maslovsky </contributor> <contributor> <name>Matt Cleveland </contributor> <contributor> <name>Gabriele Carcassi </contributor> <contributor> <name>Wendy Smoak <email>java@wendysmoak.com </contributor> <contributor> <name>Kevin Ross <email>kevin.ross@iverticalleap.com </contributor> </contributors> <distributionManagement> <!-- Cannot define in parent ATM, see COMMONSSITE-26 --> <site> <id>apache.website <name>Apache Commons Site <url>${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/digester </site> </distributionManagement> <properties> <maven.compile.source>1.5 <maven.compile.target>1.5 <commons.componentid>digester <commons.release.version>2.1 <commons.release.desc>(minium JDK 1.5) <commons.release.2.version>1.8.1 <commons.release.2.desc>(minimum JDK 1.3) <commons.rc.version>RC2 <commons.jira.id>DIGESTER <commons.jira.pid>12310471 </properties> <build> <resources> <resource> <directory>. <targetPath>META-INF <includes> <include>NOTICE.txt <include>LICENSE.txt </includes> </resource> <resource> <directory>src/main/resources <filtering>false <includes> <include>**/*.dtd </includes> </resource> </resources> <testResources> <testResource> <directory>src/test/resources <filtering>false <includes> <include>**/*.xml <include>**/*.xsd </includes> </testResource> </testResources> <plugins> <plugin> <!-- - A number of the pre-maven test case "suport" classes have names starting with Test. - This confuses the maven surefire "auto-detect test case" functionality, so we - need to manually exclude them. --> <artifactId>maven-surefire-plugin <configuration> <excludes> <exclude>**/TestBean.java <exclude>**/TestRule.java <exclude>**/TestRuleSet.java <exclude>**/Test*$*.java </excludes> <systemPropertyVariables> <!-- Suppress most logging output --> <org.apache.commons.logging.Log>org.apache.commons.logging.impl.SimpleLog <org.apache.commons.logging.simplelog.defaultlog>fatal </systemPropertyVariables> </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> <dependencies> <dependency> <groupId>commons-beanutils <artifactId>commons-beanutils <version>1.8.3 </dependency> <dependency> <groupId>commons-logging <artifactId>commons-logging <version>1.1.1 </dependency> <dependency> <groupId>junit <artifactId>junit <version>4.8.1 <scope>test </dependency> </dependencies> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins <artifactId>maven-changes-plugin <version>2.3 <configuration> <issueLinkTemplate>%URL%/../%ISSUE% </configuration> <reportSets> <reportSet> <reports> <report>changes-report <report>jira-report </reports> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.apache.maven.plugins <artifactId>maven-checkstyle-plugin <version>2.1 <configuration> <configLocation>${basedir}/src/main/config/checkstyle.xml <enableRulesSummary>false <headerFile>${basedir}/src/main/config/file-header.txt </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins <artifactId>maven-pmd-plugin <version>2.3 <configuration> <targetJdk>1.5 </configuration> <!--Use default rules--> </plugin> <plugin> <groupId>org.codehaus.mojo <artifactId>clirr-maven-plugin <version>2.2.1 <configuration> <comparisonVersion>2.0 </configuration> </plugin> </plugins> </reporting> <profiles> <profile> <id>rc <distributionManagement> <!-- Cannot define in parent ATM, see COMMONSSITE-26 --> <site> <id>apache.website <name>Apache Commons Release Candidate Staging Site <url>${commons.deployment.protocol}://people.apache.org/www/people.apache.org/builds/commons/${commons.componentid}/${commons.release.version}/${commons.rc.version}/site </site> </distributionManagement> </profile> </profiles> </project> Other Commons Digester examples (source code examples)Here is a short list of links related to this Commons Digester pom.xml source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 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.