Skip to content

Commit 7d74744

Browse files
committed
Fix idemp
1 parent 9f95d14 commit 7d74744

File tree

1 file changed

+10
-12
lines changed
  • examples/powertools-examples-idempotency

1 file changed

+10
-12
lines changed

examples/powertools-examples-idempotency/pom.xml

+10-12
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
1616
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
1717
<modelVersion>4.0.0</modelVersion>
18-
18+
1919
<groupId>software.amazon.lambda.examples</groupId>
2020
<version>2.0.0-SNAPSHOT</version>
2121
<artifactId>powertools-examples-idempotency</artifactId>
@@ -53,7 +53,7 @@
5353
<dependency>
5454
<groupId>com.amazonaws</groupId>
5555
<artifactId>aws-lambda-java-events</artifactId>
56-
<version>3.11.3</version>
56+
<version>3.11.2</version>
5757
</dependency>
5858
<dependency>
5959
<groupId>org.apache.logging.log4j</groupId>
@@ -128,6 +128,13 @@
128128
</goals>
129129
</execution>
130130
</executions>
131+
<dependencies>
132+
<dependency>
133+
<groupId>org.aspectj</groupId>
134+
<artifactId>aspectjtools</artifactId>
135+
<version>${aspectj.version}</version>
136+
</dependency>
137+
</dependencies>
131138
</plugin>
132139
<plugin>
133140
<groupId>org.apache.maven.plugins</groupId>
@@ -174,8 +181,7 @@
174181
</goals>
175182
<configuration>
176183
<transformers>
177-
<transformer
178-
implementation="org.apache.logging.log4j.maven.plugins.shade.transformer.Log4j2PluginCacheFileTransformer"/>
184+
<transformer implementation="org.apache.logging.log4j.maven.plugins.shade.transformer.Log4j2PluginCacheFileTransformer"/>
179185
</transformers>
180186
</configuration>
181187
</execution>
@@ -188,14 +194,6 @@
188194
</dependency>
189195
</dependencies>
190196
</plugin>
191-
<!-- Don't deploy the example -->
192-
<plugin>
193-
<groupId>org.apache.maven.plugins</groupId>
194-
<artifactId>maven-deploy-plugin</artifactId>
195-
<configuration>
196-
<skip>true</skip>
197-
</configuration>
198-
</plugin>
199197
</plugins>
200198
</build>
201199
<profiles>

0 commit comments

Comments
 (0)