Update build for jdk 16

Also update mapstruct for good measure, since I had to add the lombok
mapstruct binding
This commit is contained in:
Adam
2021-04-02 21:43:55 -04:00
parent 84de90eb26
commit e70a92d977
2 changed files with 14 additions and 4 deletions

View File

@@ -37,7 +37,7 @@
<properties>
<spring.boot.version>1.5.6.RELEASE</spring.boot.version>
<mapstruct.version>1.2.0.Final</mapstruct.version>
<mapstruct.version>1.4.2.Final</mapstruct.version>
</properties>
<dependencies>
@@ -62,7 +62,7 @@
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-jdk8</artifactId>
<artifactId>mapstruct</artifactId>
<version>${mapstruct.version}</version>
</dependency>
<dependency>
@@ -173,6 +173,11 @@
<artifactId>mapstruct-processor</artifactId>
<version>${mapstruct.version}</version>
</path>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok-mapstruct-binding</artifactId>
<version>0.2.0</version>
</path>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
@@ -181,6 +186,11 @@
</annotationProcessorPaths>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.3.1</version>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>