|
Re: An internal error has occurred [message #1840652 is a reply to message #1840646] |
Wed, 21 April 2021 11:35 |
Nuchem Katz Messages: 11 Registered: March 2021 |
Junior Member |
|
|
The two weren't related.
It appears I've not had lombok as a path inside inside the <annotationProcessorPaths> tag and also had put too high a version inside the source and target attribute of the maven compiler (I had 15 before):
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>11</source>
<target>11</target>
<annotationProcessorPaths>
<path>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<version>${org.mapstruct.version}</version>
</path>
<path>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<version>${org.mapstruct.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
Although I'm still getting the above error whenever I try updating my project.
[Updated on: Wed, 21 April 2021 12:05] Report message to a moderator
|
|
|
|
Powered by
FUDForum. Page generated in 0.03860 seconds