<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>com.sun.phobos</groupId>
        <artifactId>phobos-project</artifactId>
        <version>0.6.0</version>
        <relativePath>../pom.xml</relativePath>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.sun.phobos</groupId>
    <artifactId>phobos-libraries</artifactId>
    <packaging>pom</packaging>
    <version>0.6.0</version>
    <name>phobos-libraries</name>
    <url>https://phobos.dev.java.net</url>
    <build>
        <plugins>
            <plugin>
                <groupId>org.jvnet.maven-antrun-extended-plugin</groupId>
                <artifactId>maven-antrun-extended-plugin</artifactId>
                <version>1.30</version>
                <executions>
                    <execution>
                        <phase>compile</phase>
                        <configuration>
                            <tasks>
                                <unjar src="lib/${project.name}-${project.version}.jar" dest="${project.build.outputDirectory}">
                                       <patternset>
                                           <exclude name="META-INF" />
                                           <exclude name="META-INF/**" />
                                       </patternset>
                                </unjar>
                            </tasks>
                        </configuration>
                  </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
    <modules>
        <module>freemarker</module>
        <module>logging-api</module>
        <module>tagsoup</module>
    </modules>
</project>