<?xml version="1.0" encoding="ISO-8859-1"?>
<project
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://maven.apache.org/POM/4.0.0">
    <!-- @version $Revision: 209 $ ($Author: vlads $) $Date: 2007-08-27 15:19:27 -0400 (Mon, 27 Aug 2007) $ -->
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>com.pyx4j</groupId>
        <artifactId>pyx4j-maven-plugins</artifactId>
        <version>1.0.1</version><!--pyx4j-version-->
        <relativePath>../pom.xml</relativePath>
    </parent>

    <artifactId>maven-plugin-log4j</artifactId>
    <name>maven-plugin-log4j</name>

    <description>Log4j Appender for Maven 2 Plugin</description>

    <dependencies>
        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.4</source>
                    <target>1.4</target>
                </configuration>
             </plugin>
        </plugins>
    </build>


</project>