<project xsi:schemaLocation='http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd' xmlns='http://maven.apache.org/POM/4.0.0' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.sun.phobos</groupId>
    <artifactId>phobos-project</artifactId>
    <packaging>pom</packaging>
    <name>phobos-project</name>
    <version>0.6.0</version>
    <url>https://phobos.dev.java.net</url>
    <issueManagement>
        <system>bugzilla</system>
        <url>https://phobos.dev.java.net/servlets/ProjectIssues</url>
    </issueManagement>
    <mailingLists>
        <mailingList>
            <name>Phobos Dev List</name>
            <archive>dev@phobos.dev.java.net</archive>
        </mailingList>
        <mailingList>
            <name>Phobos User List</name>
            <archive>users@phobos.dev.java.net</archive>
        </mailingList>
    </mailingLists>
    <developers>
        <developer>
            <id>robc</id>
            <name>Roberto Chinnici</name>
            <email>robc@dev.java.net</email>
            <url>http://weblogs.java.net/blog/robc/</url>
            <organization>Sun Microsystems, Inc.</organization>
            <organizationUrl>http://www.sun.com</organizationUrl>
        </developer>
    </developers>
    <licenses>
        <license>
            <name>CDDL</name>
            <url>https://glassfish.dev.java.net/public/CDDLv1.0.html</url>
        </license>
    </licenses>
    <scm>
        <connection>scm:svn:https://www.dev.java.net/svn/phobos-svn/phobos-project-0.6.0</connection>
        <developerConnection>scm:svn:https://www.dev.java.net/svn/phobos-svn/tags/phobos-project-0.6.0</developerConnection>
        <url>https://phobos-svn.dev.java.net/source/browse/phobos-svn/#dirlist/phobos-project-0.6.0</url>
    </scm>
    <organization>
        <name>Sun Microsystems, Inc.</name>
        <url>http://www.sun.com</url>
    </organization>
    <build>
        <defaultGoal>install</defaultGoal>
        <plugins>
            <plugin>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-enforcer-plugin</artifactId>
              <executions>
                <execution>
                  <id>enforce-jdk-version</id>
                  <goals>
                    <goal>enforce</goal>
                  </goals>
                  <configuration>
                    <rules>
                      <requireJavaVersion>
                        <version>1.5</version>
                      </requireJavaVersion>
                    </rules>
                  </configuration>
                </execution>
              </executions>
            </plugin>
            <plugin>
                <artifactId>maven-release-plugin</artifactId>
                <configuration>
                    <tagBase>https://www.dev.java.net/svn/phobos-svn/tags</tagBase>
                </configuration>
            </plugin>
        </plugins>
        <extensions>
          <extension>
            <groupId>org.jvnet.wagon-svn</groupId>
            <artifactId>wagon-svn</artifactId>
            <version>1.8</version>
          </extension>
        </extensions>
    </build>

    <modules>
        <module>libraries</module>
        <module>modules</module>
        <module>samples</module>
        <module>samples-osgi</module>
    </modules>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.apache.maven</groupId>
                <artifactId>maven-plugin-tools-api</artifactId>
                <version>2.0</version>
                <scope>provided</scope>
            </dependency>
            <dependency>
                <groupId>junit</groupId>
                <artifactId>junit</artifactId>
                <version>${junit-version}</version>
                <scope>test</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>
    <repositories>
        
        <repository>
            <id>java.net</id>
            <name>maven-repository.dev.java.net</name>
            <url>https://maven-repository.dev.java.net/nonav/repository/</url>
            <layout>legacy</layout>
        </repository>
        
    </repositories>
    <pluginRepositories>
        
    </pluginRepositories>
    <distributionManagement>
        <repository>
            <id>java.net-m2-repository</id>
            <url>java-net:/maven2-repository/trunk/www/repository/</url>
        </repository>
    </distributionManagement>
    <properties>
        <phobos-version>0.6.0</phobos-version>
        <grizzly-version>1.8.4</grizzly-version>
        <servlet-api-version>2.5</servlet-api-version>
        <logging-api-version>1.0.4</logging-api-version>
        <tagsoup-version>1.2</tagsoup-version>
        <freemarker-version>2.3.12</freemarker-version>
        <junit-version>3.8.1</junit-version>
        <rhino-version>1.6.7</rhino-version>
        <guice-version>1.0</guice-version>
        <maven-plugin.version>1.0.0</maven-plugin.version>
    </properties>
</project>
