我正在尝试设置mapstruct处理插件,IntelliJ正在突出显示annotationProcessorPaths,它说这里不允许。
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>11</source>
<target>11</target>
<annotationProcessorPaths>
<path>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<version>1.4.2.Final</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
</plugins>
</build>```
1条答案
按热度按时间tkclm6bt1#
您可以对pom.xml进行以下更改