Skip to content

Commit 5b51f0f

Browse files
committed
More fix
1 parent 7d74744 commit 5b51f0f

File tree

2 files changed

+15
-2
lines changed
  • examples
    • powertools-examples-idempotency
    • powertools-examples-parameters

2 files changed

+15
-2
lines changed

examples/powertools-examples-idempotency/pom.xml

+7
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,13 @@
194194
</dependency>
195195
</dependencies>
196196
</plugin>
197+
<plugin>
198+
<groupId>org.apache.maven.plugins</groupId>
199+
<artifactId>maven-deploy-plugin</artifactId>
200+
<configuration>
201+
<skip>true</skip>
202+
</configuration>
203+
</plugin>
197204
</plugins>
198205
</build>
199206
<profiles>

examples/powertools-examples-parameters/pom.xml

+8-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<dependency>
3333
<groupId>com.amazonaws</groupId>
3434
<artifactId>aws-lambda-java-events</artifactId>
35-
<version>3.11.3</version>
35+
<version>3.11.2</version>
3636
</dependency>
3737
<dependency>
3838
<groupId>org.aspectj</groupId>
@@ -91,8 +91,14 @@
9191
</goals>
9292
</execution>
9393
</executions>
94+
<dependencies>
95+
<dependency>
96+
<groupId>org.aspectj</groupId>
97+
<artifactId>aspectjtools</artifactId>
98+
<version>${aspectj.version}</version>
99+
</dependency>
100+
</dependencies>
94101
</plugin>
95-
<!-- Don't deploy the example -->
96102
<plugin>
97103
<groupId>org.apache.maven.plugins</groupId>
98104
<artifactId>maven-deploy-plugin</artifactId>

0 commit comments

Comments
 (0)