Skip to content

Commit

Permalink
Merge pull request #151 from aws/fix-mac-build
Browse files Browse the repository at this point in the history
Fix Mac build
  • Loading branch information
niyatim23 authored Jan 28, 2022
2 parents 30a3154 + d8b0fd8 commit 1dd1f88
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.16</version>
<version>1.18.22</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -184,7 +184,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<version>3.9.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
Expand All @@ -198,7 +198,7 @@
<plugin>
<groupId>org.projectlombok</groupId>
<artifactId>lombok-maven-plugin</artifactId>
<version>1.18.16.0</version>
<version>1.18.20.0</version>
<executions>
<execution>
<id>delombok</id>
Expand Down Expand Up @@ -263,6 +263,13 @@
<artifactId>maven-shade-plugin</artifactId>
<version>2.3</version>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.22</version>
</path>
</annotationProcessorPaths>
<createDependencyReducedPom>false</createDependencyReducedPom>
<shadedArtifactAttached>true</shadedArtifactAttached>
<shadedClassifierName>shaded</shadedClassifierName>
Expand All @@ -276,6 +283,7 @@
</execution>
</executions>
</plugin>

</plugins>

</build>
Expand Down

0 comments on commit 1dd1f88

Please sign in to comment.