We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4019c74 + 3f3484b commit 12fd4e2Copy full SHA for 12fd4e2
1 file changed
pom.xml
@@ -40,7 +40,7 @@
40
<dependency>
41
<groupId>org.projectlombok</groupId>
42
<artifactId>lombok</artifactId>
43
- <scope>compile</scope>
+ <scope>provided</scope>
44
</dependency>
45
46
@@ -82,6 +82,21 @@
82
<artifactId>maven-surefire-plugin</artifactId>
83
<version>${org.apache.maven.plugins.maven-surefire-plugin.version}</version>
84
</plugin>
85
+
86
+ <plugin>
87
+ <groupId>org.apache.maven.plugins</groupId>
88
+ <artifactId>maven-compiler-plugin</artifactId>
89
+ <configuration>
90
+ <source>${java.version}</source>
91
+ <target>${java.version}</target>
92
+ <annotationProcessorPaths>
93
+ <path>
94
+ <groupId>org.projectlombok</groupId>
95
+ <artifactId>lombok</artifactId>
96
+ </path>
97
+ </annotationProcessorPaths>
98
+ </configuration>
99
+ </plugin>
100
</plugins>
101
</build>
102
0 commit comments