summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2010-11-11 14:13:33 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2010-11-11 14:13:33 +0000
commit8ce44ab17896481ee5c67303cf33b17fbd2b19fd (patch)
tree10bee6d0a438e71f6a99f37de9e00545dd4653a8 /sca-java-2.x/trunk
parentdaed485c57138df70a11bd9737adc97ac4351669 (diff)
Remove the servlet dependencies. (grumble grumble... pointless javadoc commments... grumble grumble)
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1033944 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk')
-rw-r--r--sca-java-2.x/trunk/testing/itest/base/dependencies/src/test/java/org/apache/tuscany/sca/itest/base/dependencies/ValidateDependenciesTestCase.java17
1 files changed, 5 insertions, 12 deletions
diff --git a/sca-java-2.x/trunk/testing/itest/base/dependencies/src/test/java/org/apache/tuscany/sca/itest/base/dependencies/ValidateDependenciesTestCase.java b/sca-java-2.x/trunk/testing/itest/base/dependencies/src/test/java/org/apache/tuscany/sca/itest/base/dependencies/ValidateDependenciesTestCase.java
index a81d2529da..c17b495d50 100644
--- a/sca-java-2.x/trunk/testing/itest/base/dependencies/src/test/java/org/apache/tuscany/sca/itest/base/dependencies/ValidateDependenciesTestCase.java
+++ b/sca-java-2.x/trunk/testing/itest/base/dependencies/src/test/java/org/apache/tuscany/sca/itest/base/dependencies/ValidateDependenciesTestCase.java
@@ -29,24 +29,17 @@ import org.junit.Test;
* Test case for verifying the expected dependencies of the base jar
* (Uses maven-dependency-plugin config in the pom.xml to generate the dependency list)
*
- * *** NOTE: this is an API! If the dependencies change the API is changed and users will be broken.
- * Don't just change the list without thinking about the consequencies
- *
* Current required jars are:
* asm-3.1.jar
* cglib-2.2.jar
* tuscany-base-2.0-SNAPSHOT.jar
* wsdl4j-1.6.2.jar
* XmlSchema-1.4.3.jar
- *
- * Some of the provided dependencies were put back to
- * make tuscany-stripes and implementation-web compile in PDE
- * so also need
- *
- * geronimo-el_1.0_spec-1.0.1.jar
- * geronimo-jsp_2.1_spec-1.0.1.jar
- * servlet-api-2.5.jar
*
+ * *** NOTE: this is an API! If the dependencies change the API is changed and users will be broken.
+ * Don't just change the list without thinking about the consequencies
+ * or probably asking on the dev list first
+ *
* junit-4.8.1.jar (only from this testcase)
*
*/
@@ -59,6 +52,6 @@ public class ValidateDependenciesTestCase {
Assert.assertTrue(dependenciesDir.exists());
File[] dependencyFiles = dependenciesDir.listFiles();
- Assert.assertEquals(9, dependencyFiles.length);
+ Assert.assertEquals(6, dependencyFiles.length);
}
}