<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-modules</artifactId>
    <packaging>pom</packaging>
    <version>0.6.0</version>
    <name>phobos-modules</name>
    <url>https://phobos.dev.java.net</url>
    <build>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.5</source>
                    <target>1.5</target>
                </configuration>
            </plugin>
            <plugin>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-source-plugin</artifactId>
              <executions>
                <execution>
                  <id>attach-sources</id>
                  <phase>verify</phase>
                  <goals>
                    <goal>jar</goal>
                  </goals>
                </execution>
              </executions>
            </plugin>
            <!--
            <plugin>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-javadoc-plugin</artifactId>
              <executions>
                <execution>
                  <id>attach-javadocs</id>
                  <phase>verify</phase>
                </execution>
              </executions>
            </plugin>
            -->
        </plugins>
    </build>
    <modules>
        <module>phobos-rhino</module>
        <module>phobos-debug-api</module>
        <module>phobos-js</module>
        <module>phobos-framework</module>
        <module>phobos-runtime</module>
        <module>phobos-grizzly-runtime</module>
        <module>phobos-osgi</module>
        <module>phobos-webapp</module>
    </modules>
</project>