-
-
Notifications
You must be signed in to change notification settings - Fork 2
Known issue: Mapstruct won't generate the Impl #54
Copy link
Copy link
Open
Labels
bugSomething isn't workingSomething isn't workingcoregood first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is needed
Description
At an early stage MapStruct would generate the implementation for our generated mapper classes. At the moment this is not happening, is not a critical error however must be fixed.
The goal, to add our dependency only once, in the section, that's all.
Temporary fix:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<source>21</source>
<target>21</target>
<annotationProcessorPaths>
<path>
<groupId>com.eorghe</groupId>
<artifactId>hyperapi</artifactId>
<version>${hyperapi.version}</version>
</path>
<path>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<version>1.6.3</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingcoregood first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is needed