1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5+ <modelVersion >4.0.0</modelVersion >
6+
7+ <artifactId >powertools-sqs</artifactId >
8+ <packaging >jar</packaging >
9+
10+ <parent >
11+ <artifactId >powertools-parent</artifactId >
12+ <groupId >software.amazon.lambda</groupId >
13+ <version >0.1.0-beta</version >
14+ </parent >
15+
16+ <name >AWS Lambda Powertools Java library SQS</name >
17+ <description >
18+ A suite of utilities for AWS Lambda Functions that makes tracing with AWS X-Ray, structured logging and creating custom metrics asynchronously easier.
19+ </description >
20+ <url >https://aws.amazon.com/lambda/</url >
21+ <issueManagement >
22+ <system >GitHub Issues</system >
23+ <url >https://github.com/awslabs/aws-lambda-powertools-java/issues</url >
24+ </issueManagement >
25+ <scm >
26+ <url >https://github.com/awslabs/aws-lambda-powertools-java.git</url >
27+ </scm >
28+ <developers >
29+ <developer >
30+ <name >AWS Lambda Powertools team</name >
31+ <organization >Amazon Web Services</organization >
32+ <organizationUrl >https://aws.amazon.com/</organizationUrl >
33+ </developer >
34+ </developers >
35+
36+ <distributionManagement >
37+ <snapshotRepository >
38+ <id >ossrh</id >
39+ <url >https://aws.oss.sonatype.org/content/repositories/snapshots</url >
40+ </snapshotRepository >
41+ </distributionManagement >
42+
43+ <dependencies >
44+ <dependency >
45+ <groupId >software.amazon.lambda</groupId >
46+ <artifactId >powertools-core</artifactId >
47+ </dependency >
48+ <dependency >
49+ <groupId >com.amazonaws</groupId >
50+ <artifactId >aws-lambda-java-core</artifactId >
51+ </dependency >
52+ <dependency >
53+ <groupId >com.amazonaws</groupId >
54+ <artifactId >aws-lambda-java-events</artifactId >
55+ </dependency >
56+ <dependency >
57+ <groupId >software.amazon.payloadoffloading</groupId >
58+ <artifactId >payloadoffloading-common</artifactId >
59+ </dependency >
60+
61+ <dependency >
62+ <groupId >org.aspectj</groupId >
63+ <artifactId >aspectjrt</artifactId >
64+ </dependency >
65+
66+ <!-- Test dependencies -->
67+ <dependency >
68+ <groupId >org.junit.jupiter</groupId >
69+ <artifactId >junit-jupiter-api</artifactId >
70+ <scope >test</scope >
71+ </dependency >
72+ <dependency >
73+ <groupId >org.junit.jupiter</groupId >
74+ <artifactId >junit-jupiter-engine</artifactId >
75+ <scope >test</scope >
76+ </dependency >
77+ <dependency >
78+ <groupId >org.junit.jupiter</groupId >
79+ <artifactId >junit-jupiter-params</artifactId >
80+ <scope >test</scope >
81+ </dependency >
82+ <dependency >
83+ <groupId >org.apache.commons</groupId >
84+ <artifactId >commons-lang3</artifactId >
85+ <scope >test</scope >
86+ </dependency >
87+ <dependency >
88+ <groupId >org.mockito</groupId >
89+ <artifactId >mockito-core</artifactId >
90+ <scope >test</scope >
91+ </dependency >
92+ <dependency >
93+ <groupId >org.aspectj</groupId >
94+ <artifactId >aspectjweaver</artifactId >
95+ <scope >test</scope >
96+ </dependency >
97+ <dependency >
98+ <groupId >org.assertj</groupId >
99+ <artifactId >assertj-core</artifactId >
100+ <scope >test</scope >
101+ </dependency >
102+ </dependencies >
103+
104+ </project >
0 commit comments