Skip to content

Commit aecc82e

Browse files
committed
pom cleanup and reduce warning noise
1 parent 00d04c3 commit aecc82e

File tree

23 files changed

+33
-246
lines changed

23 files changed

+33
-246
lines changed

examples/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
<plugin>
4949
<groupId>org.apache.maven.plugins</groupId>
5050
<artifactId>maven-deploy-plugin</artifactId>
51+
<version>3.1.1</version>
5152
<configuration>
5253
<skip>true</skip>
5354
</configuration>

examples/powertools-examples-batch/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@
137137
<plugin>
138138
<groupId>org.apache.maven.plugins</groupId>
139139
<artifactId>maven-deploy-plugin</artifactId>
140+
<version>3.1.1</version>
140141
<configuration>
141142
<skip>true</skip>
142143
</configuration>

examples/powertools-examples-cloudformation/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@
163163
<plugin>
164164
<groupId>org.apache.maven.plugins</groupId>
165165
<artifactId>maven-deploy-plugin</artifactId>
166+
<version>3.1.1</version>
166167
<configuration>
167168
<skip>true</skip>
168169
</configuration>

examples/powertools-examples-core-utilities/cdk/app/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@
132132
<plugin>
133133
<groupId>org.apache.maven.plugins</groupId>
134134
<artifactId>maven-deploy-plugin</artifactId>
135+
<version>3.1.1</version>
135136
<configuration>
136137
<skip>true</skip>
137138
</configuration>

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
<plugin>
3535
<groupId>org.apache.maven.plugins</groupId>
3636
<artifactId>maven-deploy-plugin</artifactId>
37+
<version>3.1.1</version>
3738
<configuration>
3839
<skip>true</skip>
3940
</configuration>

examples/powertools-examples-core-utilities/terraform/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@
129129
<plugin>
130130
<groupId>org.apache.maven.plugins</groupId>
131131
<artifactId>maven-deploy-plugin</artifactId>
132+
<version>3.1.1</version>
132133
<configuration>
133134
<skip>true</skip>
134135
</configuration>

examples/powertools-examples-idempotency/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,7 @@
192192
<plugin>
193193
<groupId>org.apache.maven.plugins</groupId>
194194
<artifactId>maven-deploy-plugin</artifactId>
195+
<version>3.1.1</version>
195196
<configuration>
196197
<skip>true</skip>
197198
</configuration>

examples/powertools-examples-parameters/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@
102102
<plugin>
103103
<groupId>org.apache.maven.plugins</groupId>
104104
<artifactId>maven-deploy-plugin</artifactId>
105+
<version>3.1.1</version>
105106
<configuration>
106107
<skip>true</skip>
107108
</configuration>

examples/powertools-examples-serialization/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
<plugin>
4242
<groupId>org.apache.maven.plugins</groupId>
4343
<artifactId>maven-deploy-plugin</artifactId>
44+
<version>3.1.1</version>
4445
<configuration>
4546
<skip>true</skip>
4647
</configuration>

examples/powertools-examples-validation/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@
106106
<plugin>
107107
<groupId>org.apache.maven.plugins</groupId>
108108
<artifactId>maven-deploy-plugin</artifactId>
109+
<version>3.1.1</version>
109110
<configuration>
110111
<skip>true</skip>
111112
</configuration>

pom.xml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,25 @@
3232
<system>GitHub Issues</system>
3333
<url>https://github.com/aws-powertools/powertools-lambda-java/issues</url>
3434
</issueManagement>
35+
36+
<scm>
37+
<url>https://github.com/aws-powertools/powertools-lambda-java.git</url>
38+
</scm>
39+
<developers>
40+
<developer>
41+
<name>Powertools for AWS Lambda (Java) Team</name>
42+
<organization>Amazon Web Services</organization>
43+
<organizationUrl>https://aws.amazon.com/</organizationUrl>
44+
</developer>
45+
</developers>
46+
47+
<distributionManagement>
48+
<snapshotRepository>
49+
<id>ossrh</id>
50+
<url>https://aws.oss.sonatype.org/content/repositories/snapshots</url>
51+
</snapshotRepository>
52+
</distributionManagement>
53+
3554
<licenses>
3655
<license>
3756
<name>Apache License, Version 2.0</name>
@@ -56,18 +75,6 @@
5675
<module>examples</module>
5776
</modules>
5877

59-
<scm>
60-
<url>https://github.com/aws-powertools/powertools-lambda-java.git</url>
61-
</scm>
62-
63-
<developers>
64-
<developer>
65-
<name>Powertools for AWS Lambda (Java) team</name>
66-
<organization>Amazon Web Services</organization>
67-
<organizationUrl>https://aws.amazon.com/</organizationUrl>
68-
</developer>
69-
</developers>
70-
7178
<properties>
7279
<maven.compiler.source>1.8</maven.compiler.source>
7380
<maven.compiler.target>1.8</maven.compiler.target>
@@ -94,13 +101,6 @@
94101
<jmespath.version>0.5.1</jmespath.version>
95102
</properties>
96103

97-
<distributionManagement>
98-
<snapshotRepository>
99-
<id>ossrh</id>
100-
<url>https://aws.oss.sonatype.org/content/repositories/snapshots</url>
101-
</snapshotRepository>
102-
</distributionManagement>
103-
104104
<dependencyManagement>
105105
<dependencies>
106106
<dependency>

powertools-cloudformation/pom.xml

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -32,28 +32,6 @@
3232
A suite of utilities for AWS Lambda Functions that makes tracing with AWS X-Ray, structured logging and creating
3333
custom metrics asynchronously easier.
3434
</description>
35-
<url>https://aws.amazon.com/lambda/</url>
36-
<issueManagement>
37-
<system>GitHub Issues</system>
38-
<url>https://github.com/aws-powertools/powertools-lambda-java/issues</url>
39-
</issueManagement>
40-
<scm>
41-
<url>https://github.com/aws-powertools/powertools-lambda-java.git</url>
42-
</scm>
43-
<developers>
44-
<developer>
45-
<name>Powertools for AWS Lambda (Java) Team</name>
46-
<organization>Amazon Web Services</organization>
47-
<organizationUrl>https://aws.amazon.com/</organizationUrl>
48-
</developer>
49-
</developers>
50-
51-
<distributionManagement>
52-
<snapshotRepository>
53-
<id>ossrh</id>
54-
<url>https://aws.oss.sonatype.org/content/repositories/snapshots</url>
55-
</snapshotRepository>
56-
</distributionManagement>
5735

5836
<dependencies>
5937
<dependency>

powertools-common/pom.xml

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -29,29 +29,6 @@
2929

3030
<name>Powertools for AWS Lambda (Java) library Common Internal Utilities</name>
3131
<description>Internal utilities shared by the Powertools for AWS Lambda (Java) modules. Do not use directly in your project.</description>
32-
<url>https://aws.amazon.com/lambda/</url>
33-
<issueManagement>
34-
<system>GitHub Issues</system>
35-
<url>https://github.com/aws-powertools/powertools-lambda-java/issues</url>
36-
</issueManagement>
37-
38-
<scm>
39-
<url>https://github.com/aws-powertools/powertools-lambda-java.git</url>
40-
</scm>
41-
<developers>
42-
<developer>
43-
<name>Powertools for AWS Lambda team</name>
44-
<organization>Amazon Web Services</organization>
45-
<organizationUrl>https://aws.amazon.com/</organizationUrl>
46-
</developer>
47-
</developers>
48-
49-
<distributionManagement>
50-
<snapshotRepository>
51-
<id>ossrh</id>
52-
<url>https://aws.oss.sonatype.org/content/repositories/snapshots</url>
53-
</snapshotRepository>
54-
</distributionManagement>
5532

5633
<dependencies>
5734
<dependency>

powertools-e2e-tests/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,7 @@
184184
<plugin>
185185
<groupId>org.apache.maven.plugins</groupId>
186186
<artifactId>maven-deploy-plugin</artifactId>
187+
<version>3.1.1</version>
187188
<configuration>
188189
<skip>true</skip>
189190
</configuration>

powertools-idempotency/pom.xml

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -31,28 +31,6 @@
3131
<description>
3232

3333
</description>
34-
<url>https://aws.amazon.com/lambda/</url>
35-
<issueManagement>
36-
<system>GitHub Issues</system>
37-
<url>https://github.com/aws-powertools/powertools-lambda-java/issues</url>
38-
</issueManagement>
39-
<scm>
40-
<url>https://github.com/aws-powertools/powertools-lambda-java.git</url>
41-
</scm>
42-
<developers>
43-
<developer>
44-
<name>Powertools for AWS Lambda team</name>
45-
<organization>Amazon Web Services</organization>
46-
<organizationUrl>https://aws.amazon.com/</organizationUrl>
47-
</developer>
48-
</developers>
49-
50-
<distributionManagement>
51-
<snapshotRepository>
52-
<id>ossrh</id>
53-
<url>https://aws.oss.sonatype.org/content/repositories/snapshots</url>
54-
</snapshotRepository>
55-
</distributionManagement>
5634

5735
<dependencies>
5836
<dependency>

powertools-large-messages/pom.xml

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -31,28 +31,6 @@
3131

3232
<name>Powertools for AWS Lambda (Java) library Large messages</name>
3333

34-
<issueManagement>
35-
<system>GitHub Issues</system>
36-
<url>https://github.com/aws-powertools/powertools-lambda-java/issues</url>
37-
</issueManagement>
38-
<scm>
39-
<url>https://github.com/aws-powertools/powertools-lambda-java.git</url>
40-
</scm>
41-
<developers>
42-
<developer>
43-
<name>Powertools for AWS Lambda team</name>
44-
<organization>Amazon Web Services</organization>
45-
<organizationUrl>https://aws.amazon.com/</organizationUrl>
46-
</developer>
47-
</developers>
48-
49-
<distributionManagement>
50-
<snapshotRepository>
51-
<id>ossrh</id>
52-
<url>https://aws.oss.sonatype.org/content/repositories/snapshots</url>
53-
</snapshotRepository>
54-
</distributionManagement>
55-
5634
<dependencies>
5735
<dependency>
5836
<groupId>software.amazon.lambda</groupId>

powertools-logging/pom.xml

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -31,28 +31,6 @@
3131
<description>
3232
A suite of utilities for AWS Lambda Functions that makes tracing with AWS X-Ray, structured logging and creating custom metrics asynchronously easier.
3333
</description>
34-
<url>https://aws.amazon.com/lambda/</url>
35-
<issueManagement>
36-
<system>GitHub Issues</system>
37-
<url>https://github.com/aws-powertools/powertools-lambda-java/issues</url>
38-
</issueManagement>
39-
<scm>
40-
<url>https://github.com/aws-powertools/powertools-lambda-java.git</url>
41-
</scm>
42-
<developers>
43-
<developer>
44-
<name>Powertools for AWS Lambda team</name>
45-
<organization>Amazon Web Services</organization>
46-
<organizationUrl>https://aws.amazon.com/</organizationUrl>
47-
</developer>
48-
</developers>
49-
50-
<distributionManagement>
51-
<snapshotRepository>
52-
<id>ossrh</id>
53-
<url>https://aws.oss.sonatype.org/content/repositories/snapshots</url>
54-
</snapshotRepository>
55-
</distributionManagement>
5634

5735
<dependencies>
5836
<dependency>

powertools-metrics/pom.xml

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -32,28 +32,6 @@
3232
A suite of utilities for AWS Lambda Functions that make creating custom metrics via AWS Embedded Metric Format
3333
asynchronously easier.
3434
</description>
35-
<url>https://aws.amazon.com/lambda/</url>
36-
<issueManagement>
37-
<system>GitHub Issues</system>
38-
<url>https://github.com/aws-powertools/powertools-lambda-java/issues</url>
39-
</issueManagement>
40-
<scm>
41-
<url>https://github.com/aws-powertools/powertools-lambda-java.git</url>
42-
</scm>
43-
<developers>
44-
<developer>
45-
<name>Powertools for AWS Lambda team</name>
46-
<organization>Amazon Web Services</organization>
47-
<organizationUrl>https://aws.amazon.com/</organizationUrl>
48-
</developer>
49-
</developers>
50-
51-
<distributionManagement>
52-
<snapshotRepository>
53-
<id>ossrh</id>
54-
<url>https://aws.oss.sonatype.org/content/repositories/snapshots</url>
55-
</snapshotRepository>
56-
</distributionManagement>
5735

5836
<dependencies>
5937
<dependency>

powertools-parameters/pom.xml

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -31,28 +31,6 @@
3131
<description>
3232
Set of utilities to retrieve parameters from Secrets Manager or SSM Parameter Store
3333
</description>
34-
<url>https://aws.amazon.com/lambda/</url>
35-
<issueManagement>
36-
<system>GitHub Issues</system>
37-
<url>https://github.com/aws-powertools/powertools-lambda-java/issues</url>
38-
</issueManagement>
39-
<scm>
40-
<url>https://github.com/aws-powertools/powertools-lambda-java.git</url>
41-
</scm>
42-
<developers>
43-
<developer>
44-
<name>Powertools for AWS Lambda team</name>
45-
<organization>Amazon Web Services</organization>
46-
<organizationUrl>https://aws.amazon.com/</organizationUrl>
47-
</developer>
48-
</developers>
49-
50-
<distributionManagement>
51-
<snapshotRepository>
52-
<id>ossrh</id>
53-
<url>https://aws.oss.sonatype.org/content/repositories/snapshots</url>
54-
</snapshotRepository>
55-
</distributionManagement>
5634

5735
<dependencies>
5836
<dependency>

powertools-serialization/pom.xml

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -31,28 +31,6 @@
3131
<description>
3232

3333
</description>
34-
<url>https://aws.amazon.com/lambda/</url>
35-
<issueManagement>
36-
<system>GitHub Issues</system>
37-
<url>https://github.com/aws-powertools/powertools-lambda-java/issues</url>
38-
</issueManagement>
39-
<scm>
40-
<url>https://github.com/aws-powertools/powertools-lambda-java.git</url>
41-
</scm>
42-
<developers>
43-
<developer>
44-
<name>Powertools for AWS Lambda team</name>
45-
<organization>Amazon Web Services</organization>
46-
<organizationUrl>https://aws.amazon.com/</organizationUrl>
47-
</developer>
48-
</developers>
49-
50-
<distributionManagement>
51-
<snapshotRepository>
52-
<id>ossrh</id>
53-
<url>https://aws.oss.sonatype.org/content/repositories/snapshots</url>
54-
</snapshotRepository>
55-
</distributionManagement>
5634

5735
<dependencies>
5836
<dependency>

0 commit comments

Comments
 (0)