<?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-junction-plugin</artifactId>
    <name>maven-junction-plugin</name>
    <packaging>maven-plugin</packaging>
    <version>1.0.3</version>

    <description>Maven 2 Plugin to create symbolic links between projects</description>

    <dependencies>
        <dependency>
            <groupId>sysinternals</groupId>
            <artifactId>junction</artifactId>
            <version>1.04</version>
            <type>exe</type>
        </dependency>
        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
        </dependency>
    </dependencies>

    <repositories>
        <repository>
            <id>pyx4me-web</id>
            <url>http://www.pyx4me.com/maven2</url>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
            <releases>
                <enabled>true</enabled>
            </releases>
        </repository>
    </repositories>

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


</project>