Skip to content

Commit a3d2c9b

Browse files
committed
Merge cleanup: fix some missing changes
1 parent cc004d7 commit a3d2c9b

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/pr_build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
run: ./gradlew build
7474
- name: Build Gradle Example - Kotlin
7575
if: ${{ matrix.java == '8' }} # Gradle example can only be built on Java 8
76-
working-directory: examples/powertools-examples-core/kotlin
76+
working-directory: examples/powertools-examples-core-utilities/kotlin
7777
run: ./gradlew build
7878
- name: Setup Terraform
7979
if: ${{ matrix.java == '11' }}

examples/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ Each example can be copied from its subdirectory and used independently of the r
66
## Examples
77

88
* [powertools-examples-core](powertools-examples-core) - Demonstrates the core logging, tracing, and metrics modules with different build tools and languages
9-
* [CDK](./powertools-examples-core/cdk)
10-
* [Gradle](./powertools-examples-core/gradle)
11-
* [SAM](./powertools-examples-core/sam)
12-
* [Serverless](./powertools-examples-core/serverless)
13-
* [Kotlin](./powertools-examples-core/kotlin)
9+
* [CDK](./powertools-examples-core-utilities/cdk)
10+
* [Gradle](./powertools-examples-core-utilities/gradle)
11+
* [SAM](./powertools-examples-core-utilities/sam)
12+
* [Serverless](./powertools-examples-core-utilities/serverless)
13+
* [Kotlin](./powertools-examples-core-utilities/kotlin)
1414
* [powertools-examples-idempotency](powertools-examples-idempotency) - An idempotent HTTP API
1515
* [powertools-examples-parameters](powertools-examples-parameters) - Uses the parameters module to provide runtime parameters to a function
1616
* [powertools-examples-serialization](powertools-examples-serialization) - Uses the serialization module to serialize and deserialize API Gateway & SQS payloads

examples/powertools-examples-core-utilities/kotlin/build.gradle.kts

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ dependencies {
1414
implementation("com.fasterxml.jackson.core:jackson-databind:2.13.2.2")
1515
implementation("com.amazonaws:aws-lambda-java-events:3.11.0")
1616
implementation("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.2")
17-
aspect("software.amazon.lambda:powertools-tracing:1.18.0-SNAPSHOT")
18-
aspect("software.amazon.lambda:powertools-logging:1.18.0-SNAPSHOT")
19-
aspect("software.amazon.lambda:powertools-metrics:1.18.0-SNAPSHOT")
17+
aspect("software.amazon.lambda:powertools-tracing:2.0.0-SNAPSHOT")
18+
aspect("software.amazon.lambda:powertools-logging:2.0.0-SNAPSHOT")
19+
aspect("software.amazon.lambda:powertools-metrics:2.0.0-SNAPSHOT")
2020
testImplementation("junit:junit:4.13.2")
2121
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
2222
}

examples/powertools-examples-core-utilities/terraform/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44

55
<groupId>software.amazon.lambda.examples</groupId>
6-
<version>1.18.0-SNAPSHOT</version>
6+
<version>2.0.0-SNAPSHOT</version>
77
<artifactId>powertools-examples-core-terraform</artifactId>
88
<packaging>jar</packaging>
99

0 commit comments

Comments
 (0)