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

Commons IO example source code file (pom.xml)

This example Commons IO 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 IO tags/keywords

apache, asf, asf, developer, developer, grimsell, io-161, jdk, license, license, see, urie, you, you

The Commons IO pom.xml source code

<?xml version="1.0"?>
<!--
   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>15
  </parent>
  <modelVersion>4.0.0
  <groupId>commons-io
  <artifactId>commons-io
  <version>2.0
  <name>Commons IO

  <inceptionYear>2002
  <description>
        Commons-IO contains utility classes, stream implementations, file filters, file comparators and endian classes.
  </description>

  <url>http://commons.apache.org/io/

  <issueManagement>
    <system>jira
    <url>http://issues.apache.org/jira/browse/IO
  </issueManagement>

  <scm>
    <connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/io/trunk
    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/io/trunk
    <url>http://svn.apache.org/viewvc/commons/proper/io/trunk
  </scm>

  <developers>
    <developer>
      <name>Scott Sanders
      <id>sanders
      <email>sanders@apache.org
      <organization>
      <roles>
        <role>Java Developer
      </roles>
    </developer>
    <developer>
      <name>dIon Gillard
      <id>dion
      <email>dion@apache.org
      <organization>
      <roles>
        <role>Java Developer
      </roles>
    </developer>
    <developer>
      <name>Nicola Ken Barozzi
      <id>nicolaken
      <email>nicolaken@apache.org
      <organization>
      <roles>
        <role>Java Developer
      </roles>
    </developer>
    <developer>
      <name>Henri Yandell
      <id>bayard
      <email>bayard@apache.org
      <organization>
      <roles>
        <role>Java Developer
      </roles>
    </developer>
    <developer>
      <name>Stephen Colebourne
      <id>scolebourne
      <organization>
      <roles>
        <role>Java Developer
      </roles>
      <timezone>0
    </developer>
    <developer>
      <name>Jeremias Maerki
      <id>jeremias
      <email>jeremias@apache.org
      <organization/>
      <roles>
        <role>Java Developer
      </roles>
      <timezone>+1
    </developer>
    <developer>
      <name>Matthew Hawthorne
      <id>matth
      <email>matth@apache.org
      <organization/>
      <roles>
        <role>Java Developer
      </roles>
    </developer>
    <developer>
      <name>Martin Cooper
      <id>martinc
      <email>martinc@apache.org
      <organization/>
      <roles>
        <role>Java Developer
      </roles>
    </developer>
    <developer>
      <name>Rob Oxspring
      <id>roxspring
      <email>roxspring@apache.org
      <organization/>
      <roles>
        <role>Java Developer
      </roles>
    </developer>
    <developer>
      <name>Jochen Wiedmann
      <id>jochen
      <email>jochen.wiedmann@gmail.com
    </developer>
    <developer>
      <name>Niall Pemberton
      <id>niallp
      <roles>
        <role>Java Developer
      </roles>
    </developer>
    <developer>
      <name>Jukka Zitting
      <id>jukka
      <roles>
        <role>Java Developer
      </roles>
    </developer>
  </developers>

  <contributors>
    <contributor>
      <name>Rahul Akolkar
    </contributor>
    <contributor>
      <name>Jason Anderson
    </contributor>
    <contributor>
      <name>Nathan Beyer
    </contributor>
    <contributor>
      <name>Emmanuel Bourg
    </contributor>
    <contributor>
      <name>Chris Eldredge
    </contributor>
    <contributor>
      <name>Magnus Grimsell
    </contributor>
    <contributor>
      <name>Jim Harrington
    </contributor>
    <contributor>
      <name>Thomas Ledoux
    </contributor>
    <contributor>
      <name>Andy Lehane
    </contributor>
    <contributor>
      <name>Marcelo Liberato
    </contributor>
    <contributor>
      <name>Alban Peignier
      <email>alban.peignier at free.fr
    </contributor>
    <contributor>
      <name>Ian Springer
    </contributor>
    <contributor>
      <name>Masato Tezuka
    </contributor>
    <contributor>
      <name>James Urie
    </contributor>
    <contributor>
      <name>Frank W. Zammetti
    </contributor>
  </contributors>

  <dependencies>
    <dependency>
      <groupId>junit
      <artifactId>junit
      <version>4.8.2
      <scope>test
    </dependency>
  </dependencies>

  <properties>
    <maven.compile.source>1.5
    <maven.compile.target>1.5
    <commons.componentid>io
    <commons.release.version>2.0
    <commons.release.desc>(requires JDK 1.5+)
    <commons.release.2.version>1.4
    <commons.release.2.desc>(requires JDK 1.3+)
    <commons.jira.id>IO
    <commons.jira.pid>12310477
  </properties> 

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins
        <artifactId>maven-surefire-plugin
          <configuration>
              <forkMode>pertest
              <!-- limit memory size see IO-161 -->
              <argLine>-Xmx25M
            <includes>
              <include>**/*Test*
            </includes>
            <excludes>
              <exclude>**/*AbstractTestCase*
              <exclude>**/testtools/**

              <!-- http://jira.codehaus.org/browse/SUREFIRE-44 -->
              <exclude>**/*$*
            </excludes>
        </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>

  <reporting>
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo
        <artifactId>cobertura-maven-plugin
        <version>2.4
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins
        <artifactId>maven-checkstyle-plugin
        <version>2.6
        <configuration>
          <configLocation>${basedir}/checkstyle.xml
          <enableRulesSummary>false
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.codehaus.mojo
        <artifactId>clirr-maven-plugin
        <version>2.2.2
        <configuration>
          <comparisonVersion>1.4
          <minSeverity>info
        </configuration>
      </plugin>
    </plugins>
  </reporting>
</project>

Other Commons IO examples (source code examples)

Here is a short list of links related to this Commons IO 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.