Skip to content

Commit af31d6f

Browse files
authored
Add Maven Central required info to pom.xml and skip deploying e2e tests and parameters tests. (#1871)
1 parent 92926f3 commit af31d6f

File tree

3 files changed

+23
-6
lines changed

3 files changed

+23
-6
lines changed

pom.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,19 @@
2727
<description>
2828
A suite of utilities for AWS Lambda Functions that makes tracing with AWS X-Ray, structured logging and creating custom metrics asynchronously easier.
2929
</description>
30+
<scm>
31+
<url>https://github.com/aws-powertools/powertools-lambda-java</url>
32+
<connection>scm:git:git://github.com/aws-powertools/powertools-lambda-java.git</connection>
33+
<developerConnection>scm:git:ssh://github.com:aws-powertools/powertools-lambda-java.git</developerConnection>
34+
</scm>
35+
<developers>
36+
<developer>
37+
<name>Powertools for AWS team</name>
38+
<email>aws-powertools-maintainers@amazon.com</email>
39+
<organization>Amazon Web Services Inc.</organization>
40+
<organizationUrl>https://aws.amazon.com</organizationUrl>
41+
</developer>
42+
</developers>
3043
<url>https://aws.amazon.com/lambda/</url>
3144
<issueManagement>
3245
<system>GitHub Issues</system>

powertools-e2e-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@
180180
<plugin>
181181
<groupId>org.apache.maven.plugins</groupId>
182182
<artifactId>maven-deploy-plugin</artifactId>
183-
<version>${maven.deploy.plugin.version}</version>
183+
<version>3.1.2</version>
184184
<configuration>
185185
<skip>true</skip>
186186
</configuration>

powertools-parameters/powertools-parameters-tests/pom.xml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@
1212

1313
<artifactId>powertools-parameters-tests</artifactId>
1414
<description>Powertools parameters tests that cut across all the parameters providers</description>
15-
<properties>
16-
<!-- Don't deploy the tests -->
17-
<maven.deploy.skip>true</maven.deploy.skip>
18-
</properties>
1915

2016
<dependencies>
2117
<dependency>
@@ -164,8 +160,16 @@
164160
</buildArgs>
165161
</configuration>
166162
</plugin>
163+
<plugin>
164+
<groupId>org.apache.maven.plugins</groupId>
165+
<artifactId>maven-deploy-plugin</artifactId>
166+
<version>3.1.2</version>
167+
<configuration>
168+
<skip>true</skip>
169+
</configuration>
170+
</plugin>
167171
</plugins>
168172
</build>
169173
</profile>
170174
</profiles>
171-
</project>
175+
</project>

0 commit comments

Comments
 (0)