You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by hl...@apache.org on 2011/03/29 19:24:34 UTC

svn commit: r1086645 - in /tapestry/tapestry5/trunk/plastic: pom.xml src/test/conf/ src/test/conf/testng.xml

Author: hlship
Date: Tue Mar 29 17:24:34 2011
New Revision: 1086645

URL: http://svn.apache.org/viewvc?rev=1086645&view=rev
Log:
Add just enough Maven ugliness to get the JAR to compile and install

Added:
    tapestry/tapestry5/trunk/plastic/pom.xml
    tapestry/tapestry5/trunk/plastic/src/test/conf/
    tapestry/tapestry5/trunk/plastic/src/test/conf/testng.xml

Added: tapestry/tapestry5/trunk/plastic/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/plastic/pom.xml?rev=1086645&view=auto
==============================================================================
--- tapestry/tapestry5/trunk/plastic/pom.xml (added)
+++ tapestry/tapestry5/trunk/plastic/pom.xml Tue Mar 29 17:24:34 2011
@@ -0,0 +1,38 @@
+<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>
+  <groupId>org.apache.tapestry</groupId>
+  <artifactId>plastic</artifactId>
+  <!-- This should change to tapestry-project -->
+  <parent>
+    <groupId>org.apache.tapestry</groupId>
+    <artifactId>tapestry-project</artifactId>
+    <version>5.3.0-SNAPSHOT</version>
+  </parent>
+
+  <dependencies>
+    <dependency>
+      <groupId>asm</groupId>
+      <artifactId>asm-all</artifactId>
+      <version>3.3.1</version>
+    </dependency>
+    <dependency>
+      <groupId>org.spockframework</groupId>
+      <artifactId>spock-core</artifactId>
+      <version>0.5-groovy-1.7</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.testng</groupId>
+      <artifactId>testng</artifactId>
+      <version>${testng-version}</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.groovy</groupId>
+      <artifactId>groovy-all</artifactId>
+      <version>1.7.2</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+</project>

Added: tapestry/tapestry5/trunk/plastic/src/test/conf/testng.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/plastic/src/test/conf/testng.xml?rev=1086645&view=auto
==============================================================================
--- tapestry/tapestry5/trunk/plastic/src/test/conf/testng.xml (added)
+++ tapestry/tapestry5/trunk/plastic/src/test/conf/testng.xml Tue Mar 29 17:24:34 2011
@@ -0,0 +1,6 @@
+<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
+<!-- This file is only needed for compatibility with the Maven build, it is not needed for the Gradle build -->
+<suite name="Plastic" annotations="1.5" verbose="2">
+  <test name="Placeholder -- Maven Build / TestNG Can't Run The Spock Tests">
+  </test>
+</suite>