Skip to content
Snippets Groups Projects
Commit 3b922a13 authored by Mic's avatar Mic
Browse files

added jsp-api dependency back

- transitive dependency didn't have the right version
- that was causing an incompatibility with Tomcat 6
parent c0d183ce
No related branches found
No related tags found
No related merge requests found
...@@ -10,6 +10,8 @@ ...@@ -10,6 +10,8 @@
<packaging>war</packaging> <packaging>war</packaging>
<properties> <properties>
<jsp.version>2.2</jsp.version>
<!-- Generic properties --> <!-- Generic properties -->
<java.version>1.6</java.version> <java.version>1.6</java.version>
...@@ -96,6 +98,12 @@ ...@@ -96,6 +98,12 @@
<version>${servlet.version}</version> <version>${servlet.version}</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<version>${jsp.version}</version>
<scope>provided</scope>
</dependency>
<dependency> <dependency>
<groupId>javax.xml.bind</groupId> <groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId> <artifactId>jaxb-api</artifactId>
...@@ -174,6 +182,7 @@ ...@@ -174,6 +182,7 @@
<artifactId>spring-jms</artifactId> <artifactId>spring-jms</artifactId>
<version>${spring-framework.version}</version> <version>${spring-framework.version}</version>
</dependency> </dependency>
<!-- Database connection pool --> <!-- Database connection pool -->
<dependency> <dependency>
...@@ -395,6 +404,8 @@ ...@@ -395,6 +404,8 @@
<artifactId>datatables-servlet2</artifactId> <artifactId>datatables-servlet2</artifactId>
<version>${dandelion.datatables.version}</version> <version>${dandelion.datatables.version}</version>
</dependency> </dependency>
</dependencies> </dependencies>
<!-- all Maven plugin versions are mentioned in order to guarantee the build reproducibility in the long term --> <!-- all Maven plugin versions are mentioned in order to guarantee the build reproducibility in the long term -->
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment