<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/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>com.google</groupId>
    <artifactId>google</artifactId>
    <version>1</version>
  </parent>

  <groupId>com.google.testability-explorer</groupId>
  <artifactId>testability-explorer-parent</artifactId>
  <version>1.3.3</version>
  <packaging>pom</packaging>
  <name>Testability Explorer</name>
  <description>Static analysis tool which helps you make your code testable.</description>
  <url>http://testability-explorer.googlecode.com</url>
  <scm>
    <connection>scm:svn:http://testability-explorer.googlecode.com/svn/tags/testability-explorer-parent-1.3.3</connection>
    <developerConnection>scm:svn:https://testability-explorer.googlecode.com/svn/tags/testability-explorer-parent-1.3.3</developerConnection>
    <url>http://code.google.com/p/testability-explorer/source/browse/tags/testability-explorer-parent-1.3.3</url>
  </scm>
  <modules>
    <module>testability-explorer</module>
    <module>ant-task</module>
    <module>maven-testability-plugin</module>
    <module>eclipse-plugin</module>
    <!--
    These modules aren't finished yet.
    <module>javascript</module>
    <module>cpp</module>
    -->
  </modules>

  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>3.8.2</version>
        <scope>test</scope>
      </dependency>
    </dependencies>
  </dependencyManagement>

  <build>
    <pluginManagement>
      <plugins>
        <plugin>
          <artifactId>maven-compiler-plugin</artifactId>
          <configuration>
            <source>1.5</source>
            <target>1.5</target>
          </configuration>
        </plugin>
      </plugins>
    </pluginManagement>
    <plugins>
      <plugin>
        <artifactId>maven-release-plugin</artifactId>
        <version>2.0-beta-9</version>
        <configuration>
          <remoteTagging>true</remoteTagging>
          <stagingRepository>local::default::file://${java.io.tmpdir}</stagingRepository>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>
