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

Commons Codec example source code file (pom.xml)

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

apache, asf, asf, base64, codec, codec, license, license, refinedsoundex, see, software, the, the, you

The Commons Codec 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>11
  </parent>
  <modelVersion>4.0.0
  <groupId>commons-codec
  <artifactId>commons-codec
  <version>1.4
  <name>Commons Codec

  <inceptionYear>2002
    <description>
     The codec package contains simple encoder and decoders for
     various formats such as Base64 and Hexadecimal.  In addition to these
     widely used encoders and decoders, the codec package also maintains a
     collection of phonetic encoding utilities.
    </description>

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

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

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

    <developers>
        <developer>
            <name>Henri Yandell
            <id>bayard
            <email>bayard@generationjava.com
        </developer>
        <developer>
            <name>Tim OBrien
            <id>tobrien
            <email>tobrien@apache.org
            <timezone>-6
        </developer>
        <developer>
            <name>Scott Sanders
            <id>sanders
            <email>sanders@totalsync.com
        </developer>
        <developer>
            <name>Rodney Waldhoff
            <id>rwaldhoff
            <email>rwaldhoff@apache.org
        </developer>
        <developer>
            <name>Daniel Rall
            <id>dlr
            <email>dlr@finemaltcoding.com
        </developer>
        <developer>
            <name>Jon S. Stevens
            <id>jon
            <email>jon@collab.net
        </developer>
        <developer>
            <name>Gary D. Gregory
            <id>ggregory
            <email>ggregory@apache.org
            <url>http://www.garygregory.com
            <organization>Seagull Software
            <organizationUrl>http://www.seagullsoftware.com
            <timezone>-8
        </developer>
        <developer>
            <name>David Graham
            <id>dgraham
            <email>dgraham@apache.org
        </developer>
    </developers>
    <contributors>
        <contributor>
            <name>Christopher O'Brien
            <email>siege@preoccupied.net
            <roles>
                <role>hex
                <role>md5
                <role>architecture
            </roles>
        </contributor>
        <contributor>
            <name>Martin Redington
            <roles>Representing xml-rpc
        </contributor>
        <contributor>
            <name>Jeffery Dever
            <roles>Representing http-client
        </contributor>
        <contributor>
            <name>Steve Zimmermann
            <email>steve.zimmermann@heii.com
            <roles>Documentation
        </contributor>
        <contributor>
            <name>Benjamin Walstrum
            <email>ben@walstrum.com
        </contributor>
        <contributor>
            <name>Oleg Kalnichevski
            <email>oleg@ural.ru
            <roles>Representing http-client
        </contributor>
        <contributor>
            <name>Dave Dribin
            <email>apache@dave.dribin.org
            <roles>DigestUtil
        </contributor>
        <contributor>
            <name>Alex Karasulu
            <email>aok123 at bellsouth.net
            <roles>Submitted Binary class and test
        </contributor>
        <contributor>
            <name>Matthew Inger
            <email>mattinger at yahoo.com
            <roles>Submitted DIFFERENCE algorithm for Soundex and RefinedSoundex
        </contributor>
        <contributor>
            <name>Jochen Wiedmann
            <email>jochen@apache.org
            <roles>Base64 code [CODEC-69]
        </contributor>
        <contributor>
            <name>Julius Davies
            <email>juliusdavies@gmail.com
            <roles>
               <role>Base64InputStream
               <role>Base64OutputStream
            </roles>
        </contributor>
        <contributor>
            <name>Sebastian Bazley
            <email>sebb@apache.org
            <roles>Streaming Base64
        </contributor>
    </contributors>    

  <!-- Codec should depend on very little -->
  <dependencies>
    <dependency>
      <groupId>junit
      <artifactId>junit
      <version>3.8.2
      <scope>test
    </dependency>
  </dependencies>

  <properties>
    <maven.compile.source>1.4
    <maven.compile.target>1.4
    <commons.componentid>codec
    <commons.release.version>1.4
    <commons.jira.id>CODEC
    <commons.jira.pid>12310464
    <!-- Ensure copies work OK (can be removed later when this is in parent POM) -->
    <project.build.sourceEncoding>UTF-8
    <project.reporting.outputEncoding>UTF-8
  </properties> 

  <build>
    <sourceDirectory>src/java
    <testSourceDirectory>src/test
      <plugins>
        <plugin>
          <groupId>org.apache.maven.plugins
          <artifactId>maven-surefire-plugin
            <configuration>
              <includes>
                <include>**/*Test.java
                <include>**/Test*.java
              </includes>
              <excludes>
                <exclude>**/*AbstractTest.java
              </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.apache.maven.plugins
          <artifactId>maven-changes-plugin
          <version>2.1
          <configuration>
            <xmlPath>${basedir}/xdocs/changes.xml
            <issueLinkTemplate>%URL%/%ISSUE%
          </configuration>
          <reportSets>
            <reportSet>
              <reports>
                 <report>changes-report
              </reports>
            </reportSet>
          </reportSets>
        </plugin>
        <plugin>
          <groupId>org.apache.maven.plugins
          <artifactId>maven-checkstyle-plugin
          <version>2.3
          <configuration>
            <configLocation>${basedir}/checkstyle.xml
            <enableRulesSummary>false
            <headerFile>${basedir}/LICENSE-header.txt
          </configuration>
        </plugin>
        <plugin>
          <groupId>org.codehaus.mojo
          <artifactId>cobertura-maven-plugin
          <version>2.3
        </plugin>
        <plugin>
          <groupId>org.apache.maven.plugins
          <artifactId>maven-pmd-plugin
          <version>2.4
        </plugin>
        <plugin>
          <groupId>org.codehaus.mojo
          <artifactId>findbugs-maven-plugin
          <version>2.0.1
        </plugin>
        <plugin>
          <groupId>org.codehaus.mojo
          <artifactId>clirr-maven-plugin
          <version>2.2.2
          <configuration>
            <comparisonVersion>1.3
            <minSeverity>info
          </configuration>
        </plugin>
        <plugin>
          <groupId>org.apache.maven.plugins
          <artifactId>maven-javadoc-plugin
          <version>2.5
          <configuration>
            <linksource>true
            <links>
              <link>http://java.sun.com/j2se/1.4.2/docs/api/
            </links>
          </configuration>
        </plugin>
      </plugins>
    </reporting>

</project>

Other Commons Codec examples (source code examples)

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