Closed HantaoCai closed 2 years ago
here is my plugins config
`
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>17</source> <target>17</target> <annotationProcessorPaths> <path> <groupId>org.mapstruct</groupId> <artifactId>mapstruct-processor</artifactId> <version>${org.mapstruct.version}</version> </path> <path> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${org.projectlombok.version}</version> </path> <path> <groupId>org.projectlombok</groupId> <artifactId>lombok-mapstruct-binding</artifactId> <version>0.1.0</version> </path> <!-- other annotation processors --> </annotationProcessorPaths> </configuration> </plugin> </plugins>`
I want to compile the classes in common to the server module and web module, how should I configure it? Please give me some advice, thank you~
here is my plugins config
`
I want to compile the classes in common to the server module and web module, how should I configure it? Please give me some advice, thank you~