blob: 831967b7d4191259941f75991343042a151df2dc [file] [log] [blame]
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>javax.inject</groupId>
<artifactId>javax.inject-tck</artifactId>
<packaging>jar</packaging>
<name>javax.inject-tck</name>
<version>1</version>
<description>The javax.inject API - TCK</description>
<url>http://code.google.com/p/atinject/</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:svn:http://atinject.googlecode.com/svn/trunk</connection>
<url>http://code.google.com/p/atinject/source/checkout</url>
</scm>
<dependencies>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>javax.inject</artifactId>
<version>${pom.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.7</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>tck</sourceDirectory>
<resources>
<resource>
<directory>tck</directory>
<excludes>
<exclude>**/*.java</exclude>
<exclude>tck.iml</exclude>
</excludes>
</resource>
</resources>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.1</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
<encoding>UTF-8</encoding>
<optimize>false</optimize>
<debug>true</debug>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>