Brings mapstruct processor back to plugin and webapp.

This commit is contained in:
Johannes Schnatterer
2018-08-02 15:22:41 +02:00
parent 8c8d908378
commit 1c52b33229
3 changed files with 14 additions and 7 deletions

View File

@@ -107,12 +107,6 @@
<artifactId>mapstruct-jdk8</artifactId>
</dependency>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<scope>provided</scope>
</dependency>
<!-- event bus -->
<dependency>

View File

@@ -38,7 +38,7 @@
<scope>provided</scope>
</dependency>
<!-- annotation processor -->
<!-- annotation processors -->
<dependency>
<groupId>sonia.scm</groupId>
@@ -46,6 +46,13 @@
<version>2.0.0-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<!-- Annotation processor for DTO mappers-->
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<scope>provided</scope>
</dependency>
<!-- test scope -->

View File

@@ -378,6 +378,12 @@
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
<build>