summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Hammant <paul@hammant.org>2010-02-09 21:01:45 +0000
committerPaul Hammant <paul@hammant.org>2010-02-09 21:01:45 +0000
commitd97e99cbc4ca9b8f170f8893b7030035da058b3c (patch)
treebe60bf7217cc44afe4efd514d92d192ee4886941
parent79e028a86eb67077631a2b560188e402e8552193 (diff)
downloadplatform_external_jsr330-d97e99cbc4ca9b8f170f8893b7030035da058b3c.tar.gz
platform_external_jsr330-d97e99cbc4ca9b8f170f8893b7030035da058b3c.tar.bz2
platform_external_jsr330-d97e99cbc4ca9b8f170f8893b7030035da058b3c.zip
Maven pom for the tck added. Run via: 'mvn install -f tck-pom.xml'
git-svn-id: https://atinject.googlecode.com/svn/trunk@69 3bc8319c-20ab-11de-9edc-3f40a397ab60
-rw-r--r--tck-pom.xml60
1 files changed, 60 insertions, 0 deletions
diff --git a/tck-pom.xml b/tck-pom.xml
new file mode 100644
index 0000000..5ebe941
--- /dev/null
+++ b/tck-pom.xml
@@ -0,0 +1,60 @@
+<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>
+ <url>http://code.google.com/p/atinject/source/checkout</url>
+ </scm>
+ <dependencies>
+ <dependency>
+ <groupId>javax.inject</groupId>
+ <artifactId>javax.inject</artifactId>
+ <version>1</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>
+ </excludes>
+ </resource>
+ </resources>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0.2</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>