<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>net.java</groupId>
    <artifactId>jvnet-parent</artifactId>
    <version>1</version>
  </parent>

  <modelVersion>4.0.0</modelVersion>
  <groupId>org.jvnet</groupId>
  <artifactId>tiger-types</artifactId>
  <version>1.4</version>

  <name>Type arithmetic library for Java5</name>
  
  <scm>
    <connection>scm:svn:https://svn.java.net/svn/tiger-types~svn/tags/tiger-types-1.4</connection>
    <developerConnection>scm:svn:https://svn.java.net/svn/tiger-types~svn/tags/tiger-types-1.4</developerConnection>
    <url>http://java.net/projects/tiger-types/sources/svn/show/tags/tiger-types-1.4</url>
  </scm>

  <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-idea-plugin</artifactId>
        <version>2.2</version>
        <configuration>
          <jdkName>JDK1.5</jdkName>
          <downloadSources>true</downloadSources>
        </configuration>
      </plugin>
      <plugin>
          <groupId>org.apache.maven.plugins</groupId>                           
          <artifactId>maven-release-plugin</artifactId>                         
          <configuration>                                                       
              <mavenExecutorId>forked-path</mavenExecutorId>                
              <useReleaseProfile>false</useReleaseProfile>                  
              <arguments>${release.arguments}</arguments>
          </configuration>                                                      
      </plugin>                    
    </plugins>
  </build>
  
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <reporting>
    <plugins>
      <plugin>
        <artifactId>maven-javadoc-plugin</artifactId>
      </plugin>
    </plugins>
  </reporting>
</project>
