Skip to content

Commit

Permalink
Fix some merge issues
Browse files Browse the repository at this point in the history
  • Loading branch information
scottgerring committed Feb 13, 2024
1 parent 8ec0c50 commit 6a3be41
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/pr_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ on:
push:
branches:
- main
- v2
paths:
- 'powertools-batch/**'
- 'powertools-cloudformation/**'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
<artifactId>powertools-parameters</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>appconfigdata</artifactId>
Expand All @@ -36,6 +35,11 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>${aspectj.version}</version>
</dependency>

<!-- Test dependencies -->
<dependency>
Expand Down
5 changes: 5 additions & 0 deletions powertools-parameters/powertools-parameters-dynamodb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>${aspectj.version}</version>
</dependency>

<!-- Test dependencies -->
<dependency>
Expand Down
5 changes: 5 additions & 0 deletions powertools-parameters/powertools-parameters-secrets/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>${aspectj.version}</version>
</dependency>

<!-- Test dependencies -->
<dependency>
Expand Down
5 changes: 5 additions & 0 deletions powertools-parameters/powertools-parameters-ssm/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>${aspectj.version}</version>
</dependency>

<!-- Test dependencies -->
<dependency>
Expand Down
5 changes: 5 additions & 0 deletions powertools-validation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@
</description>

<dependencies>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>software.amazon.lambda</groupId>
<artifactId>powertools-common</artifactId>
Expand Down
4 changes: 4 additions & 0 deletions spotbugs-exclude.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@
<And>
<Class name="software.amazon.lambda.powertools.largemessages.LargeMessageConfig"/>
<Method name="getS3Client"/>
</And>
<And>
<Class name="software.amazon.lambda.powertools.parameters.secrets.SecretsProviderBuilder"/>
<Field name="cacheManager"/>
</And>
Expand Down Expand Up @@ -111,6 +113,8 @@
<And>
<Class name="software.amazon.lambda.powertools.parameters.transform.TransformationManager"/>
<Field name="transformer"/>
</And>
<And>
<Class name="software.amazon.lambda.powertools.logging.logback.LambdaEcsEncoder"/>
<Field name="throwableConverter"/>
</And>
Expand Down

0 comments on commit 6a3be41

Please sign in to comment.