AA: Add fix for JasperException when java8 is used - https://github.com/spring-projects/spring-petclinic/pull/51

This commit is contained in:
Andrew Abogado 2015-02-02 23:07:07 +08:00
parent ad60b77493
commit 0fb4c8acfc

26
pom.xml
View file

@ -65,7 +65,7 @@
<webjars-angular-ui-bootstrap>0.12.0</webjars-angular-ui-bootstrap> <webjars-angular-ui-bootstrap>0.12.0</webjars-angular-ui-bootstrap>
<mysql.version>5.1.22</mysql.version> <mysql.version>5.1.22</mysql.version>
<!-- Jackson --> <!-- Jackson -->
<com.fasterxml.jackson-version>2.3.1</com.fasterxml.jackson-version> <com.fasterxml.jackson-version>2.3.1</com.fasterxml.jackson-version>
</properties> </properties>
@ -162,8 +162,8 @@
</dependency> </dependency>
<!-- Database connection pool <!-- Database connection pool
See here for more details on commons-dbcp versus tomcat-jdbc: See here for more details on commons-dbcp versus tomcat-jdbc:
http://blog.ippon.fr/2013/03/13/improving-the-performance-of-the-spring-petclinic-sample-application-part-3-of-5/ http://blog.ippon.fr/2013/03/13/improving-the-performance-of-the-spring-petclinic-sample-application-part-3-of-5/
--> -->
<dependency> <dependency>
@ -193,7 +193,7 @@
<artifactId>rome</artifactId> <artifactId>rome</artifactId>
<version>${rome.version}</version> <version>${rome.version}</version>
</dependency> </dependency>
<!-- Date and Time --> <!-- Date and Time -->
<dependency> <dependency>
<groupId>joda-time</groupId> <groupId>joda-time</groupId>
@ -233,7 +233,7 @@
<artifactId>hibernate-validator</artifactId> <artifactId>hibernate-validator</artifactId>
<version>${hibernate-validator.version}</version> <version>${hibernate-validator.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-ehcache</artifactId> <artifactId>hibernate-ehcache</artifactId>
@ -271,7 +271,7 @@
<artifactId>angular-ui-bootstrap</artifactId> <artifactId>angular-ui-bootstrap</artifactId>
<version>${webjars-angular-ui-bootstrap}</version> <version>${webjars-angular-ui-bootstrap}</version>
</dependency> </dependency>
<!-- Test Artifacts --> <!-- Test Artifacts -->
<dependency> <dependency>
<groupId>org.springframework</groupId> <groupId>org.springframework</groupId>
@ -317,7 +317,7 @@
<artifactId>datatables-export-itext</artifactId> <artifactId>datatables-export-itext</artifactId>
<version>${dandelion.version}</version> <version>${dandelion.version}</version>
</dependency> </dependency>
<!-- Jackson2 --> <!-- Jackson2 -->
<dependency> <dependency>
<groupId>com.fasterxml.jackson.core</groupId> <groupId>com.fasterxml.jackson.core</groupId>
@ -334,14 +334,14 @@
<artifactId>jackson-datatype-joda</artifactId> <artifactId>jackson-datatype-joda</artifactId>
<version>${com.fasterxml.jackson-version}</version> <version>${com.fasterxml.jackson-version}</version>
</dependency> </dependency>
</dependencies> </dependencies>
<dependencyManagement> <dependencyManagement>
<dependencies> <dependencies>
<!-- <!--
Force the version of all the spring jars (core, beans, context, ...) Force the version of all the spring jars (core, beans, context, ...)
pulled by spring-data-jpa:1.3.4.RELEASE to 3.2.x when spring-data pulls pulled by spring-data-jpa:1.3.4.RELEASE to 3.2.x when spring-data pulls
the 3.1.x versions to prevent some misbehaviors of maven which sometimes the 3.1.x versions to prevent some misbehaviors of maven which sometimes
pulls both 3.2.x and 3.1.x versions of spring-core, spring-beans and spring-context pulls both 3.2.x and 3.1.x versions of spring-core, spring-beans and spring-context
--> -->
<dependency> <dependency>
@ -382,7 +382,7 @@
<defaultGoal>install</defaultGoal> <defaultGoal>install</defaultGoal>
<testResources> <testResources>
<testResource> <testResource>
<!-- declared explicitly so Spring config files can be placed next to their corresponding JUnit test class <!-- declared explicitly so Spring config files can be placed next to their corresponding JUnit test class
(see example with ValidatorTests) --> (see example with ValidatorTests) -->
<directory>${project.basedir}/src/test/java</directory> <directory>${project.basedir}/src/test/java</directory>
</testResource> </testResource>
@ -462,7 +462,7 @@
<plugin> <plugin>
<groupId>org.apache.tomcat.maven</groupId> <groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId> <artifactId>tomcat7-maven-plugin</artifactId>
<version>2.0</version> <version>2.2</version>
<configuration> <configuration>
<server>tomcat-development-server</server> <server>tomcat-development-server</server>
<port>9966</port> <port>9966</port>