diff options
Diffstat (limited to '')
-rw-r--r-- | sandbox/rfeng/sca-java-2.x/implementation-spring/helloworld-spring-webapp/pom.xml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/sandbox/rfeng/sca-java-2.x/implementation-spring/helloworld-spring-webapp/pom.xml b/sandbox/rfeng/sca-java-2.x/implementation-spring/helloworld-spring-webapp/pom.xml index 7b2e7a4674..6cce33b527 100644 --- a/sandbox/rfeng/sca-java-2.x/implementation-spring/helloworld-spring-webapp/pom.xml +++ b/sandbox/rfeng/sca-java-2.x/implementation-spring/helloworld-spring-webapp/pom.xml @@ -67,6 +67,13 @@ <artifactId>sample-implementation-spring-helloworld-contribution</artifactId> <version>2.0-SNAPSHOT</version> </dependency> + + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>jstl</artifactId> + <version>1.2</version> + <scope>runtime</scope> + </dependency> <dependency> <groupId>junit</groupId> @@ -80,6 +87,27 @@ <version>1.6.1</version> <scope>test</scope> </dependency> + + <!-- Mark the following dependencies provided so that maven wonn't package them into the WAR. Tomcat has issue using these jars in the WAR --> + <dependency> + <groupId>org.apache.geronimo.specs</groupId> + <artifactId>geronimo-servlet_2.5_spec</artifactId> + <version>1.2</version> + <type>jar</type> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.apache.geronimo.specs</groupId> + <artifactId>geronimo-jsp_2.1_spec</artifactId> + <version>1.0.1</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.apache.geronimo.specs</groupId> + <artifactId>geronimo-el_1.0_spec</artifactId> + <version>1.0.2</version> + <scope>provided</scope> + </dependency> </dependencies> <build> |