Skip to content

Commit 9f95d14

Browse files
committed
Tests
1 parent 1af7649 commit 9f95d14

File tree

2 files changed

+18
-13
lines changed
  • examples/powertools-examples-validation
  • powertools-e2e-tests/handlers

2 files changed

+18
-13
lines changed

examples/powertools-examples-validation/pom.xml

+12-8
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,11 @@
4343
<artifactId>aws-lambda-java-core</artifactId>
4444
<version>1.2.3</version>
4545
</dependency>
46+
<dependency>
47+
<groupId>org.aspectj</groupId>
48+
<artifactId>aspectjrt</artifactId>
49+
<version>${aspectj.version}</version>
50+
</dependency>
4651

4752
<!-- Test dependencies -->
4853
<dependency>
@@ -95,14 +100,13 @@
95100
</goals>
96101
</execution>
97102
</executions>
98-
</plugin>
99-
<!-- Don't deploy the example -->
100-
<plugin>
101-
<groupId>org.apache.maven.plugins</groupId>
102-
<artifactId>maven-deploy-plugin</artifactId>
103-
<configuration>
104-
<skip>true</skip>
105-
</configuration>
103+
<dependencies>
104+
<dependency>
105+
<groupId>org.aspectj</groupId>
106+
<artifactId>aspectjtools</artifactId>
107+
<version>${aspectj.version}</version>
108+
</dependency>
109+
</dependencies>
106110
</plugin>
107111
</plugins>
108112
</build>

powertools-e2e-tests/handlers/pom.xml

+6-5
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
<maven.compiler.version>3.11.0</maven.compiler.version>
2424
<aws.sdk.version>2.20.108</aws.sdk.version>
2525
<log4j.version>2.20.0</log4j.version>
26+
<aspectj.version>1.9.20</aspectj.version>
2627
</properties>
2728

2829
<modules>
@@ -131,11 +132,11 @@
131132
</execution>
132133
</executions>
133134
<dependencies>
134-
<dependency>
135-
<groupId>org.apache.logging.log4j</groupId>
136-
<artifactId>log4j-transform-maven-shade-plugin-extensions</artifactId>
137-
<version>0.1.0</version>
138-
</dependency>
135+
<dependency>
136+
<groupId>org.apache.logging.log4j</groupId>
137+
<artifactId>log4j-transform-maven-shade-plugin-extensions</artifactId>
138+
<version>0.1.0</version>
139+
</dependency>
139140
</dependencies>
140141
</plugin>
141142
<plugin>

0 commit comments

Comments
 (0)