Skip to content

Commit a6e1a4b

Browse files
committed
GH-572 - Fix APT setup after jMolecules upgrade.
We now explicitly declare a recent compiler plugin with the APTs of Lombok an jMolecules declared explicitly to make sure they run in the right order (Lombok first).
1 parent fcf49db commit a6e1a4b

File tree

1 file changed

+24
-0
lines changed
  • spring-modulith-examples/spring-modulith-example-full

1 file changed

+24
-0
lines changed

spring-modulith-examples/spring-modulith-example-full/pom.xml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,28 @@
6666

6767
</dependencies>
6868

69+
<build>
70+
<plugins>
71+
72+
<plugin>
73+
<groupId>org.apache.maven.plugins</groupId>
74+
<artifactId>maven-compiler-plugin</artifactId>
75+
<version>3.13.0</version>
76+
<configuration>
77+
<annotationProcessorPathsUseDepMgmt>true</annotationProcessorPathsUseDepMgmt>
78+
<annotationProcessorPaths>
79+
<path>
80+
<groupId>org.projectlombok</groupId>
81+
<artifactId>lombok</artifactId>
82+
</path>
83+
<path>
84+
<groupId>org.jmolecules.integrations</groupId>
85+
<artifactId>jmolecules-apt</artifactId>
86+
</path>
87+
</annotationProcessorPaths>
88+
</configuration>
89+
</plugin>
90+
</plugins>
91+
</build>
92+
6993
</project>

0 commit comments

Comments
 (0)