<?xml version="1.0" encoding="UTF-8"?>

<project xmlns="http://maven.apache.org/POM/4.0.0">
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.messages</groupId>
    <artifactId>msg</artifactId>
    <packaging>jar</packaging>

    <!-- ================================================== -->
    <!--  General information                               -->
    <!-- ================================================== -->
    <version>SNAPSHOT</version>
    <name>Messages</name>
    <description>
        The Messages utility provides a replacement for the java.util.ResourceBundle
        class. The standard resource bundle framework does not provide package
        inheritance of resources, nor support for pluggable message loading
        mechanism (such as XML), nor support for unicode-based resources. This
        package provides these features until the standard JDK supports them.
    </description>
    <inceptionYear>2005</inceptionYear>
    <organization>
        <name>Corleon Software Foundation</name>
        <url>http://corleon.dnsalias.org</url>
    </organization>
    <developers>
        <developer>
            <id>arik</id>
            <name>Arik Kfir</name>
            <email>arikkfir@gmail.com</email>
            <organization>Corleon Software Foundation</organization>
            <organizationUrl>http://corleon.dnsalias.org</organizationUrl>
            <roles>
                <role>Architect</role>
                <role>Developer</role>
            </roles>
            <timezone>+2</timezone>
        </developer>
    </developers>

    <!-- ================================================== -->
    <!--  Project license                                   -->
    <!-- ================================================== -->
    <licenses>
        <license>
            <name>Apache License, Version 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
            <distribution>repo</distribution>
        </license>
    </licenses>


    <!-- ================================================== -->
    <!--  Remote repositories                               -->
    <!-- ================================================== -->
    <repositories>
        <repository>
            <id>corleon</id>
            <name>Corleon Software Foundation (CSF) Repository</name>
            <url>http://corleon.dnsalias.org/maven</url>
        </repository>
    </repositories>

    <!-- ================================================== -->
    <!--  SCM repository                                    -->
    <!-- ================================================== -->
    <scm>
        <connection>scm:svn:http://anonymous@svn.javaforge.com/svn/msg/trunk/</connection>
        <developerConnection>scm:svn:http://${user.name}@svn.javaforge.com/svn/msg/trunk/</developerConnection>
    </scm>

    <!-- ================================================== -->
    <!--  Deploy to Corleon Software Foundation repo        -->
    <!-- ================================================== -->
    <distributionManagement>
        <repository>
            <id>corleon</id>
            <name>Corleon Software Foundation (CSF) internal repository</name>
            <url>file:///maven-repo</url>
        </repository>
    </distributionManagement>

    <!-- ================================================== -->
    <!--  General build process                             -->
    <!-- ================================================== -->
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <executions>
                    <execution>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.5</source>
                    <target>1.5</target>
                    <debug>true</debug>
                    <showDeprecation>true</showDeprecation>
                    <showWarnings>true</showWarnings>
                    <encoding>UTF-8</encoding>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <!-- ================================================== -->
    <!--  Dependencies                                      -->
    <!-- ================================================== -->
    <dependencies>
        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
            <version>1.2.8</version>
        </dependency>
        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
            <version>1.0</version>
        </dependency>
    </dependencies>
</project>
