Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,19 @@
<description>
A suite of utilities for AWS Lambda Functions that makes tracing with AWS X-Ray, structured logging and creating custom metrics asynchronously easier.
</description>
<scm>
<url>https://github.com/aws-powertools/powertools-lambda-java</url>
<connection>scm:git:git://github.com/aws-powertools/powertools-lambda-java.git</connection>
<developerConnection>scm:git:ssh://github.com:aws-powertools/powertools-lambda-java.git</developerConnection>
</scm>
<developers>
<developer>
<name>Powertools for AWS team</name>
<email>[email protected]</email>
<organization>Amazon Web Services Inc.</organization>
<organizationUrl>https://aws.amazon.com</organizationUrl>
</developer>
</developers>
<url>https://aws.amazon.com/lambda/</url>
<issueManagement>
<system>GitHub Issues</system>
Expand Down
2 changes: 1 addition & 1 deletion powertools-e2e-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>${maven.deploy.plugin.version}</version>
<version>3.1.2</version>
<configuration>
<skip>true</skip>
</configuration>
Expand Down
14 changes: 9 additions & 5 deletions powertools-parameters/powertools-parameters-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@

<artifactId>powertools-parameters-tests</artifactId>
<description>Powertools parameters tests that cut across all the parameters providers</description>
<properties>
<!-- Don't deploy the tests -->
<maven.deploy.skip>true</maven.deploy.skip>
</properties>

<dependencies>
<dependency>
Expand Down Expand Up @@ -164,8 +160,16 @@
</buildArgs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.2</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
</project>
Loading