Skip to content

Commit 1dd1f88

Browse files
authored
Merge pull request #151 from aws/fix-mac-build
Fix Mac build
2 parents 30a3154 + d8b0fd8 commit 1dd1f88

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

pom.xml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@
122122
<dependency>
123123
<groupId>org.projectlombok</groupId>
124124
<artifactId>lombok</artifactId>
125-
<version>1.18.16</version>
125+
<version>1.18.22</version>
126126
<scope>provided</scope>
127127
</dependency>
128128
<dependency>
@@ -184,7 +184,7 @@
184184
<plugin>
185185
<groupId>org.apache.maven.plugins</groupId>
186186
<artifactId>maven-compiler-plugin</artifactId>
187-
<version>3.2</version>
187+
<version>3.9.0</version>
188188
<configuration>
189189
<source>1.8</source>
190190
<target>1.8</target>
@@ -198,7 +198,7 @@
198198
<plugin>
199199
<groupId>org.projectlombok</groupId>
200200
<artifactId>lombok-maven-plugin</artifactId>
201-
<version>1.18.16.0</version>
201+
<version>1.18.20.0</version>
202202
<executions>
203203
<execution>
204204
<id>delombok</id>
@@ -263,6 +263,13 @@
263263
<artifactId>maven-shade-plugin</artifactId>
264264
<version>2.3</version>
265265
<configuration>
266+
<annotationProcessorPaths>
267+
<path>
268+
<groupId>org.projectlombok</groupId>
269+
<artifactId>lombok</artifactId>
270+
<version>1.18.22</version>
271+
</path>
272+
</annotationProcessorPaths>
266273
<createDependencyReducedPom>false</createDependencyReducedPom>
267274
<shadedArtifactAttached>true</shadedArtifactAttached>
268275
<shadedClassifierName>shaded</shadedClassifierName>
@@ -276,6 +283,7 @@
276283
</execution>
277284
</executions>
278285
</plugin>
286+
279287
</plugins>
280288

281289
</build>

0 commit comments

Comments
 (0)