Skip to content

Commit 82e6cd1

Browse files
Simplified MapStruct/Lombok Setup
1 parent 9e40db7 commit 82e6cd1

File tree

1 file changed

+0
-34
lines changed

1 file changed

+0
-34
lines changed

java/pom.xml

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
<jqa-plugin-common.version>${com.buschmais.jqassistant.version}</jqa-plugin-common.version>
1414
<jqa-json-plugin.version>${com.buschmais.jqassistant.version}</jqa-json-plugin.version>
1515
<lombok.version>1.18.34</lombok.version>
16-
<mapstruct.version>1.6.0</mapstruct.version>
1716
</properties>
1817

1918
<build>
@@ -33,38 +32,6 @@
3332
<filtering>false</filtering>
3433
</resource>
3534
</resources>
36-
<pluginManagement>
37-
<plugins>
38-
<plugin>
39-
<!-- Maven Compiler Plugin with Lombok/Mapstruct configuration -->
40-
<groupId>org.apache.maven.plugins</groupId>
41-
<artifactId>maven-compiler-plugin</artifactId>
42-
<configuration>
43-
<annotationProcessorPaths>
44-
<path>
45-
<groupId>org.projectlombok</groupId>
46-
<artifactId>lombok</artifactId>
47-
<version>${lombok.version}</version>
48-
</path>
49-
<dependency>
50-
<groupId>org.projectlombok</groupId>
51-
<artifactId>lombok-mapstruct-binding</artifactId>
52-
<version>0.2.0</version>
53-
</dependency>
54-
<path>
55-
<groupId>org.mapstruct</groupId>
56-
<artifactId>mapstruct-processor</artifactId>
57-
<version>${mapstruct.version}</version>
58-
</path>
59-
</annotationProcessorPaths>
60-
<compilerArgs>
61-
<arg>-Amapstruct.unmappedTargetPolicy=ERROR</arg>
62-
<arg>-Amapstruct.unmappedSourcePolicy=ERROR</arg>
63-
</compilerArgs>
64-
</configuration>
65-
</plugin>
66-
</plugins>
67-
</pluginManagement>
6835
<plugins>
6936
<plugin>
7037
<groupId>org.apache.maven.plugins</groupId>
@@ -100,7 +67,6 @@
10067
<dependency>
10168
<groupId>org.mapstruct</groupId>
10269
<artifactId>mapstruct</artifactId>
103-
<scope>provided</scope>
10470
</dependency>
10571
<dependency>
10672
<groupId>org.projectlombok</groupId>

0 commit comments

Comments
 (0)