mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-15 20:25:50 +00:00
Merge branch 'migration-to-Spring-4.0.0'
This commit is contained in:
commit
8e268b733e
1 changed files with 24 additions and 17 deletions
41
pom.xml
41
pom.xml
|
@ -16,14 +16,14 @@
|
||||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||||
|
|
||||||
<!-- Spring -->
|
<!-- Spring -->
|
||||||
<spring-framework.version>3.2.5.RELEASE</spring-framework.version>
|
<spring-framework.version>4.0.0.RELEASE</spring-framework.version>
|
||||||
<spring-data-jpa.version>1.4.2.RELEASE</spring-data-jpa.version>
|
<spring-data-jpa.version>1.4.2.RELEASE</spring-data-jpa.version>
|
||||||
|
|
||||||
|
|
||||||
<!-- Java EE / Java SE dependencies -->
|
<!-- Java EE / Java SE dependencies -->
|
||||||
<jsp.version>2.2</jsp.version>
|
<jsp.version>2.2</jsp.version>
|
||||||
<jstl.version>1.2</jstl.version>
|
<jstl.version>1.2</jstl.version>
|
||||||
<servlet.version>2.5</servlet.version>
|
<tomcat.servlet.version>7.0.30</tomcat.servlet.version>
|
||||||
<jaxb-impl.version>2.2.7</jaxb-impl.version>
|
<jaxb-impl.version>2.2.7</jaxb-impl.version>
|
||||||
|
|
||||||
<!-- Hibernate / JPA -->
|
<!-- Hibernate / JPA -->
|
||||||
|
@ -75,22 +75,29 @@
|
||||||
<version>${jadira-usertype-core.version}</version>
|
<version>${jadira-usertype-core.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>javax.servlet</groupId>
|
<groupId>org.apache.tomcat</groupId>
|
||||||
<artifactId>jstl</artifactId>
|
<artifactId>tomcat-servlet-api</artifactId>
|
||||||
<version>${jstl.version}</version>
|
<version>${tomcat.servlet.version}</version>
|
||||||
</dependency>
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>javax.servlet</groupId>
|
<groupId>javax.servlet.jsp</groupId>
|
||||||
<artifactId>servlet-api</artifactId>
|
<artifactId>jsp-api</artifactId>
|
||||||
<version>${servlet.version}</version>
|
<version>2.1</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
|
||||||
<groupId>javax.servlet.jsp</groupId>
|
<dependency>
|
||||||
<artifactId>jsp-api</artifactId>
|
<groupId>org.glassfish.web</groupId>
|
||||||
<version>${jsp.version}</version>
|
<artifactId>jstl-impl</artifactId>
|
||||||
<scope>provided</scope>
|
<version>1.2</version>
|
||||||
</dependency>
|
<exclusions>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>javax.servlet</groupId>
|
||||||
|
<artifactId>servlet-api</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
</exclusions>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.sun.xml.bind</groupId>
|
<groupId>com.sun.xml.bind</groupId>
|
||||||
<artifactId>jaxb-impl</artifactId>
|
<artifactId>jaxb-impl</artifactId>
|
||||||
|
|
Loading…
Reference in a new issue