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
+ <parent >
8
+ <groupId >software.amazon.lambda</groupId >
9
+ <artifactId >powertools-parent</artifactId >
10
+ <version >1.17.0-SNAPSHOT</version >
11
+ </parent >
12
+
13
+ <artifactId >powertools-large-messages</artifactId >
14
+ <packaging >jar</packaging >
15
+
16
+ <name >Powertools for AWS Lambda (Java) library Large messages</name >
17
+
18
+ <issueManagement >
19
+ <system >GitHub Issues</system >
20
+ <url >https://github.com/aws-powertools/powertools-lambda-java/issues</url >
21
+ </issueManagement >
22
+ <scm >
23
+ <url >https://github.com/aws-powertools/powertools-lambda-java.git</url >
24
+ </scm >
25
+ <developers >
26
+ <developer >
27
+ <name >Powertools for AWS Lambda team</name >
28
+ <organization >Amazon Web Services</organization >
29
+ <organizationUrl >https://aws.amazon.com/</organizationUrl >
30
+ </developer >
31
+ </developers >
32
+
33
+ <distributionManagement >
34
+ <snapshotRepository >
35
+ <id >ossrh</id >
36
+ <url >https://aws.oss.sonatype.org/content/repositories/snapshots</url >
37
+ </snapshotRepository >
38
+ </distributionManagement >
39
+
40
+ <dependencies >
41
+ <dependency >
42
+ <groupId >software.amazon.lambda</groupId >
43
+ <artifactId >powertools-core</artifactId >
44
+ </dependency >
45
+ <dependency >
46
+ <groupId >org.aspectj</groupId >
47
+ <artifactId >aspectjrt</artifactId >
48
+ </dependency >
49
+ <dependency >
50
+ <groupId >com.amazonaws</groupId >
51
+ <artifactId >aws-lambda-java-events</artifactId >
52
+ </dependency >
53
+ <dependency >
54
+ <groupId >software.amazon.payloadoffloading</groupId >
55
+ <artifactId >payloadoffloading-common</artifactId >
56
+ </dependency >
57
+ <dependency >
58
+ <groupId >software.amazon.awssdk</groupId >
59
+ <artifactId >s3</artifactId >
60
+ <exclusions >
61
+ <exclusion >
62
+ <groupId >software.amazon.awssdk</groupId >
63
+ <artifactId >netty-nio-client</artifactId >
64
+ </exclusion >
65
+ <exclusion >
66
+ <groupId >software.amazon.awssdk</groupId >
67
+ <artifactId >apache-client</artifactId >
68
+ </exclusion >
69
+ </exclusions >
70
+ </dependency >
71
+ <dependency >
72
+ <groupId >software.amazon.awssdk</groupId >
73
+ <artifactId >url-connection-client</artifactId >
74
+ <version >${aws.sdk.version} </version >
75
+ </dependency >
76
+
77
+ <!-- Test dependencies -->
78
+ <dependency >
79
+ <groupId >org.junit.jupiter</groupId >
80
+ <artifactId >junit-jupiter-api</artifactId >
81
+ <scope >test</scope >
82
+ </dependency >
83
+ <dependency >
84
+ <groupId >org.junit.jupiter</groupId >
85
+ <artifactId >junit-jupiter-engine</artifactId >
86
+ <scope >test</scope >
87
+ </dependency >
88
+ <dependency >
89
+ <groupId >org.junit-pioneer</groupId >
90
+ <artifactId >junit-pioneer</artifactId >
91
+ <scope >test</scope >
92
+ </dependency >
93
+ <dependency >
94
+ <groupId >org.mockito</groupId >
95
+ <artifactId >mockito-core</artifactId >
96
+ <scope >test</scope >
97
+ </dependency >
98
+ <dependency >
99
+ <groupId >org.mockito</groupId >
100
+ <artifactId >mockito-inline</artifactId >
101
+ <scope >test</scope >
102
+ </dependency >
103
+ <dependency >
104
+ <groupId >org.apache.commons</groupId >
105
+ <artifactId >commons-lang3</artifactId >
106
+ <scope >test</scope >
107
+ </dependency >
108
+ <dependency >
109
+ <groupId >org.assertj</groupId >
110
+ <artifactId >assertj-core</artifactId >
111
+ <scope >test</scope >
112
+ </dependency >
113
+ </dependencies >
114
+
115
+ <build >
116
+ <plugins >
117
+ <plugin >
118
+ <artifactId >maven-surefire-plugin</artifactId >
119
+ <version >3.1.2</version >
120
+ <configuration >
121
+ <environmentVariables >
122
+ <AWS_REGION >eu-central-1</AWS_REGION >
123
+ </environmentVariables >
124
+ </configuration >
125
+ </plugin >
126
+ </plugins >
127
+ </build >
128
+
129
+ </project >
0 commit comments