Skip to content

Commit e3d4c7e

Browse files
authored
Fix remaining maven central properties required. (#1872)
1 parent af31d6f commit e3d4c7e

File tree

4 files changed

+51
-31
lines changed
  • powertools-e2e-tests
  • powertools-idempotency
  • powertools-parameters/powertools-parameters-tests
  • powertools-serialization

4 files changed

+51
-31
lines changed

powertools-e2e-tests/pom.xml

Lines changed: 29 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -174,31 +174,36 @@
174174
</dependency>
175175
</dependencies>
176176

177-
<build>
178-
<plugins>
179-
<!-- Don't deploy the e2e tests -->
180-
<plugin>
181-
<groupId>org.apache.maven.plugins</groupId>
182-
<artifactId>maven-deploy-plugin</artifactId>
183-
<version>3.1.2</version>
184-
<configuration>
185-
<skip>true</skip>
186-
</configuration>
187-
</plugin>
188-
<plugin>
189-
<groupId>org.apache.maven.plugins</groupId>
190-
<artifactId>maven-compiler-plugin</artifactId>
191-
<version>3.13.0</version>
192-
<configuration>
193-
<source>${maven.compiler.source}</source>
194-
<target>${maven.compiler.target}</target>
195-
<encoding>UTF-8</encoding>
196-
</configuration>
197-
</plugin>
198-
</plugins>
199-
</build>
200-
201177
<profiles>
178+
<profile>
179+
<id>default</id>
180+
<activation>
181+
<activeByDefault>true</activeByDefault>
182+
</activation>
183+
<build>
184+
<plugins>
185+
<!-- Don't deploy the e2e tests -->
186+
<plugin>
187+
<groupId>org.apache.maven.plugins</groupId>
188+
<artifactId>maven-deploy-plugin</artifactId>
189+
<version>3.1.2</version>
190+
<configuration>
191+
<skip>true</skip>
192+
</configuration>
193+
</plugin>
194+
<plugin>
195+
<groupId>org.apache.maven.plugins</groupId>
196+
<artifactId>maven-compiler-plugin</artifactId>
197+
<version>3.13.0</version>
198+
<configuration>
199+
<source>${maven.compiler.source}</source>
200+
<target>${maven.compiler.target}</target>
201+
<encoding>UTF-8</encoding>
202+
</configuration>
203+
</plugin>
204+
</plugins>
205+
</build>
206+
</profile>
202207
<profile>
203208
<id>e2e</id>
204209
<build>

powertools-idempotency/pom.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,7 @@
2828
<packaging>pom</packaging>
2929

3030
<name>Powertools for AWS Lambda (Java) library Idempotency</name>
31-
<description>
32-
33-
</description>
31+
<description>Utility to implement idempotency of Lambda functions</description>
3432

3533

3634
<modules>
@@ -116,4 +114,4 @@
116114
</plugin>
117115
</plugins>
118116
</build>
119-
</project>
117+
</project>

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

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

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

@@ -72,6 +73,24 @@
7273
</dependencies>
7374

7475
<profiles>
76+
<profile>
77+
<id>default</id>
78+
<activation>
79+
<activeByDefault>true</activeByDefault>
80+
</activation>
81+
<build>
82+
<plugins>
83+
<plugin>
84+
<groupId>org.apache.maven.plugins</groupId>
85+
<artifactId>maven-deploy-plugin</artifactId>
86+
<version>3.1.2</version>
87+
<configuration>
88+
<skip>true</skip>
89+
</configuration>
90+
</plugin>
91+
</plugins>
92+
</build>
93+
</profile>
7594
<profile>
7695
<id>generate-graalvm-files</id>
7796
<dependencies>

powertools-serialization/pom.xml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,7 @@
2828
<packaging>jar</packaging>
2929

3030
<name>Powertools for AWS Lambda (Java) - Serialization Utilities</name>
31-
<description>
32-
33-
</description>
31+
<description>Utilities for JSON serialization used across the project.</description>
3432

3533
<dependencies>
3634
<dependency>

0 commit comments

Comments
 (0)