File tree Expand file tree Collapse file tree 4 files changed +51
-30
lines changed
powertools-parameters/powertools-parameters-tests Expand file tree Collapse file tree 4 files changed +51
-30
lines changed Original file line number Diff line number Diff line change 174
174
</dependency >
175
175
</dependencies >
176
176
177
- <build >
178
- <plugins >
179
- <!-- Don't deploy the e2e tests -->
180
- <plugin >
181
- <groupId >org.apache.maven.plugins</groupId >
182
- <artifactId >maven-deploy-plugin</artifactId >
183
- <version >${maven.deploy.plugin.version} </version >
184
- <configuration >
185
- <skip >true</skip >
186
- </configuration >
187
- </plugin >
188
- <plugin >
189
- <groupId >org.apache.maven.plugins</groupId >
190
- <artifactId >maven-compiler-plugin</artifactId >
191
- <version >3.13.0</version >
192
- <configuration >
193
- <source >${maven.compiler.source} </source >
194
- <target >${maven.compiler.target} </target >
195
- <encoding >UTF-8</encoding >
196
- </configuration >
197
- </plugin >
198
- </plugins >
199
- </build >
200
177
201
178
<profiles >
179
+ <profile >
180
+ <id >default</id >
181
+ <activation >
182
+ <activeByDefault >true</activeByDefault >
183
+ </activation >
184
+ <build >
185
+ <plugins >
186
+ <!-- Don't deploy the e2e tests -->
187
+ <plugin >
188
+ <groupId >org.apache.maven.plugins</groupId >
189
+ <artifactId >maven-deploy-plugin</artifactId >
190
+ <version >3.1.2</version >
191
+ <configuration >
192
+ <skip >true</skip >
193
+ </configuration >
194
+ </plugin >
195
+ <plugin >
196
+ <groupId >org.apache.maven.plugins</groupId >
197
+ <artifactId >maven-compiler-plugin</artifactId >
198
+ <version >3.13.0</version >
199
+ <configuration >
200
+ <source >${maven.compiler.source} </source >
201
+ <target >${maven.compiler.target} </target >
202
+ <encoding >UTF-8</encoding >
203
+ </configuration >
204
+ </plugin >
205
+ </plugins >
206
+ </build >
207
+ </profile >
202
208
<profile >
203
209
<id >e2e</id >
204
210
<build >
Original file line number Diff line number Diff line change 28
28
<packaging >pom</packaging >
29
29
30
30
<name >Powertools for AWS Lambda (Java) library Idempotency</name >
31
- <description >
32
-
33
- </description >
31
+ <description >Utility to implement idempotency of Lambda functions</description >
34
32
35
33
36
34
<modules >
116
114
</plugin >
117
115
</plugins >
118
116
</build >
119
- </project >
117
+ </project >
Original file line number Diff line number Diff line change 10
10
<relativePath >../../pom.xml</relativePath >
11
11
</parent >
12
12
13
+ <name >Powertools for AWS Lambda (Java) library Parameters - Tests</name >
13
14
<artifactId >powertools-parameters-tests</artifactId >
14
15
<description >Powertools parameters tests that cut across all the parameters providers</description >
15
16
<properties >
76
77
</dependencies >
77
78
78
79
<profiles >
80
+ <profile >
81
+ <id >default</id >
82
+ <activation >
83
+ <activeByDefault >true</activeByDefault >
84
+ </activation >
85
+ <build >
86
+ <plugins >
87
+ <plugin >
88
+ <groupId >org.apache.maven.plugins</groupId >
89
+ <artifactId >maven-deploy-plugin</artifactId >
90
+ <version >3.1.2</version >
91
+ <configuration >
92
+ <skip >true</skip >
93
+ </configuration >
94
+ </plugin >
95
+ </plugins >
96
+ </build >
97
+ </profile >
79
98
<profile >
80
99
<id >generate-graalvm-files</id >
81
100
<dependencies >
Original file line number Diff line number Diff line change 28
28
<packaging >jar</packaging >
29
29
30
30
<name >Powertools for AWS Lambda (Java) - Serialization Utilities</name >
31
- <description >
32
-
33
- </description >
31
+ <description >Utilities for JSON serialization used across the project.</description >
34
32
35
33
<dependencies >
36
34
<dependency >
You can’t perform that action at this time.
0 commit comments