Skip to content

fix: Add required maven central properties #1872

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 11, 2025
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
53 changes: 29 additions & 24 deletions powertools-e2e-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -174,31 +174,36 @@
</dependency>
</dependencies>

<build>
<plugins>
<!-- Don't deploy the e2e tests -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.2</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>default</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<!-- Don't deploy the e2e tests -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.2</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>e2e</id>
<build>
Expand Down
6 changes: 2 additions & 4 deletions powertools-idempotency/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@
<packaging>pom</packaging>

<name>Powertools for AWS Lambda (Java) library Idempotency</name>
<description>

</description>
<description>Utility to implement idempotency of Lambda functions</description>


<modules>
Expand Down Expand Up @@ -116,4 +114,4 @@
</plugin>
</plugins>
</build>
</project>
</project>
19 changes: 19 additions & 0 deletions powertools-parameters/powertools-parameters-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
<relativePath>../../pom.xml</relativePath>
</parent>

<name>Powertools for AWS Lambda (Java) library Parameters - Tests</name>
<artifactId>powertools-parameters-tests</artifactId>
<description>Powertools parameters tests that cut across all the parameters providers</description>

Expand Down Expand Up @@ -72,6 +73,24 @@
</dependencies>

<profiles>
<profile>
<id>default</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<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>
<profile>
<id>generate-graalvm-files</id>
<dependencies>
Expand Down
4 changes: 1 addition & 3 deletions powertools-serialization/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@
<packaging>jar</packaging>

<name>Powertools for AWS Lambda (Java) - Serialization Utilities</name>
<description>

</description>
<description>Utilities for JSON serialization used across the project.</description>

<dependencies>
<dependency>
Expand Down
Loading