Author: andyhot
Date: Sat Oct 17 13:13:29 2009
New Revision: 826244

URL: http://svn.apache.org/viewvc?rev=826244&view=rev
Log:
workaround for (possible) build error

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

Modified: tapestry/tapestry5/trunk/quickstart/pom.xml
URL: 
http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/quickstart/pom.xml?rev=826244&r1=826243&r2=826244&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/quickstart/pom.xml (original)
+++ tapestry/tapestry5/trunk/quickstart/pom.xml Sat Oct 17 13:13:29 2009
@@ -9,6 +9,12 @@
             <artifactId>easymock</artifactId>
             <version>2.4</version>
         </dependency>
+        <dependency>
+            <groupId>org.testng</groupId>
+            <artifactId>testng</artifactId>
+            <version>${testng-version}</version>
+            <classifier>jdk15</classifier>
+        </dependency>
     </dependencies>
     <parent>
         <groupId>org.apache.tapestry</groupId>

Added: tapestry/tapestry5/trunk/quickstart/src/test/conf/testng.xml
URL: 
http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/quickstart/src/test/conf/testng.xml?rev=826244&view=auto
==============================================================================
--- tapestry/tapestry5/trunk/quickstart/src/test/conf/testng.xml (added)
+++ tapestry/tapestry5/trunk/quickstart/src/test/conf/testng.xml Sat Oct 17 
13:13:29 2009
@@ -0,0 +1,21 @@
+<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd";>
+<!--
+   Copyright 2009 The Apache Software Foundation
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+-->
+
+<suite name="Tapestry Quickstart" annotations="1.5" verbose="2">
+    <!-- This avoids a build error (ideally we'd like to disable the surefire 
plugin in this project) -->
+    <test name="Placeholder (no tests)"/>
+</suite>


Reply via email to