Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
52 changes: 29 additions & 23 deletions powertools-e2e-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -174,31 +174,37 @@
</dependency>
</dependencies>

<build>
<plugins>
<!-- Don't deploy the e2e tests -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>${maven.deploy.plugin.version}</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>
<properties>
Expand Down Expand Up @@ -76,6 +77,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