Skip to content

Commit

Permalink
Do not configure the compiler plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
scordio committed Sep 29, 2023
1 parent fe54d1b commit a8911dd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 19 deletions.
5 changes: 0 additions & 5 deletions example-model/pom.xml
Expand Up @@ -27,11 +27,6 @@
<classifier>jakarta</classifier>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct</artifactId>
<version>1.5.5.Final</version>
</dependency>
</dependencies>

</project>
19 changes: 5 additions & 14 deletions pom.xml
Expand Up @@ -24,6 +24,11 @@
</properties>

<dependencies>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct</artifactId>
<version>1.5.5.Final</version>
</dependency>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
Expand All @@ -32,18 +37,4 @@
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<annotationProcessors>
<annotationProcessor>org.mapstruct.ap.MappingProcessor</annotationProcessor>
</annotationProcessors>
</configuration>
</plugin>
</plugins>
</build>

</project>

0 comments on commit a8911dd

Please sign in to comment.