<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">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>org.sonatype.oss</groupId>
    <artifactId>oss-parent</artifactId>
    <version>7</version>
  </parent>
  <groupId>com.googlecode.obvious</groupId>
  <artifactId>obvious-test</artifactId>
  <version>1.0</version>
  <packaging>jar</packaging>
  <name>obvious-test</name>
  <description>This project contains unit tests to validate Obvious implementations</description>
  <url>http://code.google.com/p/obvious/</url>
  <licenses>
  	<license>
  		<name>The BSD License</name>
  		<url>http://www.opensource.org/licenses/bsd-license.php</url>
  		<distribution>repo</distribution>
  	</license>
  </licenses>
  <scm>
  	<url>http://obvious.googlecode.com/svn/trunk/</url>
  	<connection>scm:svn:http://obvious.googlecode.com/svn/trunk/</connection>
  	<developerConnection>scm:svn:https://obvious.googlecode.com/svn/trunk/</developerConnection>
  </scm>
  <developers>
  	<developer>
  		<id>1</id>
  		<name>Fekete</name>
  		<email>fekete at lri.fr</email>
  	</developer>
  	<developer>
  		<id>2</id>
  		<name>Hemery</name>
  		<email>hemery at lri.fr</email>
  	</developer>
  </developers>
  <dependencies>
  	<dependency>
  		<groupId>com.googlecode.obvious</groupId>
  		<artifactId>obvious</artifactId>
  		<version>1.0</version>
  	</dependency>
  </dependencies>
  <build>
    <plugins>
     	<plugin>
        	<groupId>org.apache.maven.plugins</groupId>
        	<artifactId>maven-compiler-plugin</artifactId>
        	<version>2.3.2</version>
        	<configuration>
          		<source>1.6</source>
          		<target>1.6</target>
        	</configuration>
		</plugin>
		<plugin>
        	<groupId>org.apache.maven.plugins</groupId>
        	<artifactId>maven-gpg-plugin</artifactId>
        	<executions>
          		<execution>
            		<id>sign-artifacts</id>
            		<phase>verify</phase>
            		<goals>
              			<goal>sign</goal>
            		</goals>
				</execution>
      		</executions>
		</plugin>
    </plugins>
  </build>
</project>