mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-15 20:25:50 +00:00
added jsp-api dependency back
- transitive dependency didn't have the right version - that was causing an incompatibility with Tomcat 6
This commit is contained in:
parent
c0d183ce3d
commit
3b922a1390
1 changed files with 11 additions and 0 deletions
11
pom.xml
11
pom.xml
|
@ -10,6 +10,8 @@
|
|||
<packaging>war</packaging>
|
||||
|
||||
<properties>
|
||||
|
||||
<jsp.version>2.2</jsp.version>
|
||||
|
||||
<!-- Generic properties -->
|
||||
<java.version>1.6</java.version>
|
||||
|
@ -96,6 +98,12 @@
|
|||
<version>${servlet.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>javax.servlet.jsp</groupId>
|
||||
<artifactId>jsp-api</artifactId>
|
||||
<version>${jsp.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>javax.xml.bind</groupId>
|
||||
<artifactId>jaxb-api</artifactId>
|
||||
|
@ -174,6 +182,7 @@
|
|||
<artifactId>spring-jms</artifactId>
|
||||
<version>${spring-framework.version}</version>
|
||||
</dependency>
|
||||
|
||||
|
||||
<!-- Database connection pool -->
|
||||
<dependency>
|
||||
|
@ -395,6 +404,8 @@
|
|||
<artifactId>datatables-servlet2</artifactId>
|
||||
<version>${dandelion.datatables.version}</version>
|
||||
</dependency>
|
||||
|
||||
|
||||
</dependencies>
|
||||
|
||||
<!-- all Maven plugin versions are mentioned in order to guarantee the build reproducibility in the long term -->
|
||||
|
|
Loading…
Reference in a new issue