Skip to content

Commit 6e425e4

Browse files
scottgerringjeromevdl
authored andcommitted
Update to snapshot (#1384)
1 parent 4523893 commit 6e425e4

File tree

7 files changed

+12
-20
lines changed

7 files changed

+12
-20
lines changed

examples/powertools-examples-core/cdk/infra/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>software.amazon.lambda.examples</groupId>
66
<artifactId>cdk</artifactId>
7-
<version>1.17.0</version>
7+
<version>1.18.0-SNAPSHOT</version>
88
<properties>
99
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1010
<cdk.version>2.91.0</cdk.version>

examples/powertools-examples-core/sam/pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@
2727
<artifactId>powertools-logging</artifactId>
2828
<version>${project.version}</version>
2929
</dependency>
30+
<dependency>
31+
<groupId>software.amazon.lambda</groupId>
32+
<artifactId>powertools-metrics</artifactId>
33+
<version>${project.version}</version>
34+
</dependency>
3035
<dependency>
3136
<groupId>software.amazon.awssdk</groupId>
3237
<artifactId>url-connection-client</artifactId>

powertools-common/pom.xml

+5-1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,10 @@
5858
<groupId>com.amazonaws</groupId>
5959
<artifactId>aws-lambda-java-core</artifactId>
6060
</dependency>
61+
<dependency>
62+
<groupId>org.aspectj</groupId>
63+
<artifactId>aspectjrt</artifactId>
64+
</dependency>
6165
<dependency>
6266
<groupId>org.apache.logging.log4j</groupId>
6367
<artifactId>log4j-slf4j2-impl</artifactId>
@@ -117,4 +121,4 @@
117121
</plugins>
118122
</build>
119123

120-
</project>
124+
</project>

powertools-metrics/pom.xml

-5
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,6 @@
8383
<artifactId>jackson-databind</artifactId>
8484
</dependency>
8585

86-
<dependency>
87-
<groupId>org.aspectj</groupId>
88-
<artifactId>aspectjrt</artifactId>
89-
</dependency>
90-
9186
<!-- Test dependencies -->
9287
<dependency>
9388
<groupId>org.junit.jupiter</groupId>

powertools-parameters/pom.xml

+1-5
Original file line numberDiff line numberDiff line change
@@ -104,11 +104,7 @@
104104
<groupId>com.fasterxml.jackson.core</groupId>
105105
<artifactId>jackson-databind</artifactId>
106106
</dependency>
107-
<dependency>
108-
<groupId>org.aspectj</groupId>
109-
<artifactId>aspectjrt</artifactId>
110-
<scope>compile</scope>
111-
</dependency>
107+
112108
<!-- Test dependencies -->
113109
<dependency>
114110
<groupId>org.junit.jupiter</groupId>

powertools-tracing/pom.xml

-4
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,6 @@
6868
<groupId>com.amazonaws</groupId>
6969
<artifactId>aws-lambda-java-core</artifactId>
7070
</dependency>
71-
<dependency>
72-
<groupId>org.aspectj</groupId>
73-
<artifactId>aspectjrt</artifactId>
74-
</dependency>
7571
<dependency>
7672
<groupId>com.amazonaws</groupId>
7773
<artifactId>aws-xray-recorder-sdk-core</artifactId>

powertools-validation/pom.xml

-4
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,6 @@
8080
<groupId>com.fasterxml.jackson.core</groupId>
8181
<artifactId>jackson-databind</artifactId>
8282
</dependency>
83-
<dependency>
84-
<groupId>org.aspectj</groupId>
85-
<artifactId>aspectjrt</artifactId>
86-
</dependency>
8783
<dependency>
8884
<groupId>com.networknt</groupId>
8985
<artifactId>json-schema-validator</artifactId>

0 commit comments

Comments
 (0)