Skip to content

Commit b05a16c

Browse files
authored
Merge pull request #1494 from aws-powertools/chore/merge-main-into-v2
chore: merge main into v2
2 parents c79400d + f741f64 commit b05a16c

File tree

5 files changed

+20
-22
lines changed

5 files changed

+20
-22
lines changed

.github/workflows/pr_artifacts_size.yml

+15-8
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,26 @@ name: Artifacts Size
33
on:
44
pull_request:
55
branches:
6-
- master
6+
- main
7+
- v2
78
paths:
9+
- 'powertools-batch/**'
810
- 'powertools-cloudformation/**'
9-
- 'powertools-core/**'
10-
- 'powertools-serialization/**'
11+
- 'powertools-core/**' # not in v2
12+
- 'powertools-common/**' # v2 only
13+
- 'powertools-e2e-tests/**'
14+
- 'powertools-idempotency/**'
15+
- 'powertools-large-messages/**'
1116
- 'powertools-logging/**'
12-
- 'powertools-sqs/**'
17+
- 'powertools-metrics/**'
18+
- 'powertools-parameters/**'
19+
- 'powertools-serialization/**'
20+
- 'powertools-sqs/**' # not in v2
21+
- 'powertools-test-suite/**' # not in v2
1322
- 'powertools-tracing/**'
1423
- 'powertools-validation/**'
15-
- 'powertools-parameters/**'
16-
- 'powertools-idempotency/**'
17-
- 'powertools-metrics/**'
1824
- 'pom.xml'
25+
- '.github/workflows/pr_artifacts_size.yml'
1926
jobs:
2027
codecheck:
2128
runs-on: ubuntu-latest
@@ -27,7 +34,7 @@ jobs:
2734
distribution: 'corretto'
2835
java-version: 11
2936
- name: Build with Maven
30-
run: mvn clean package --file pom.xml -DskipTests
37+
run: mvn clean package --file pom.xml -DskipTests artifact:buildinfo
3138
- name: Get artifacts size & build report
3239
id: artifacts-size-report
3340
run: |

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,7 @@ The following companies, among others, use Powertools:
207207
* [Capital One](https://www.capitalone.com/)
208208
* [CPQi (Exadel Financial Services)](https://cpqi.com/)
209209
* [Europace AG](https://europace.de/)
210+
* [Vertex Pharmaceuticals](https://www.vrtx.com/)
210211

211212
## Credits
212213

examples/powertools-examples-idempotency/pom.xml

-7
Original file line numberDiff line numberDiff line change
@@ -224,11 +224,4 @@
224224
</properties>
225225
</profile>
226226
</profiles>
227-
<repositories>
228-
<repository>
229-
<id>dynamodb-local-oregon</id>
230-
<name>DynamoDB Local Release Repository</name>
231-
<url>https://s3.eu-central-1.amazonaws.com/dynamodb-local-frankfurt/release</url>
232-
</repository>
233-
</repositories>
234227
</project>

powertools-idempotency/pom.xml

-7
Original file line numberDiff line numberDiff line change
@@ -190,11 +190,4 @@
190190
</plugin>
191191
</plugins>
192192
</build>
193-
<repositories>
194-
<repository>
195-
<id>dynamodb-local-oregon</id>
196-
<name>DynamoDB Local Release Repository</name>
197-
<url>https://s3.eu-central-1.amazonaws.com/dynamodb-local-frankfurt/release</url>
198-
</repository>
199-
</repositories>
200193
</project>

powertools-serialization/pom.xml

+4
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,10 @@
6767
<groupId>org.apache.logging.log4j</groupId>
6868
<artifactId>log4j-slf4j2-impl</artifactId>
6969
</dependency>
70+
<dependency>
71+
<groupId>com.fasterxml.jackson.core</groupId>
72+
<artifactId>jackson-databind</artifactId>
73+
</dependency>
7074

7175
<!-- Test dependencies -->
7276
<dependency>

0 commit comments

Comments
 (0)