Upgrade to version 7.53.0 and upgrade swimming pool example to jdk11

This commit is contained in:
nheron 2021-05-11 10:32:24 +02:00
commit 562e9e61ae
10 changed files with 107 additions and 49 deletions

View file

@ -14,17 +14,7 @@
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>${jaxb.api.version}</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
<version>${jaxb.api.version}</version>
</dependency>
</dependencies>
<build>
<plugins>

View file

@ -15,12 +15,11 @@
*/
package org.training.leisure.swimmingpool;
import javax.xml.bind.annotation.XmlRootElement;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
@XmlRootElement
public class Quote {
private Date quoteDate;
private Date validUntil;

View file

@ -10,7 +10,7 @@
<artifactId>drools-framework-examples</artifactId>
<properties>
<spring-boot.version>2.1.2.RELEASE</spring-boot.version>
<spring-boot.version>2.2.6.RELEASE</spring-boot.version>
</properties>
<packaging>pom</packaging>