Skip to content

docs: Update gradle configuration readme #1359

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 22 commits into from
Aug 24, 2023
Merged
Changes from 2 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
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
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,8 @@ Next, configure the aspectj-maven-plugin to compile-time weave (CTW) the aws-lam
<summary><b>Gradle - Java 11+</b></summary>

```groovy
// Make sure you are using gradle >= 8.2.1

plugins {
id 'java'
id 'io.freefair.aspectj.post-compile-weaving' version '8.1.0'
Expand All @@ -143,6 +145,7 @@ Next, configure the aspectj-maven-plugin to compile-time weave (CTW) the aws-lam
aspect 'software.amazon.lambda:powertools-logging:{{ powertools.version }}'
aspect 'software.amazon.lambda:powertools-tracing:{{ powertools.version }}'
aspect 'software.amazon.lambda:powertools-metrics:{{ powertools.version }}'
implementation "org.aspectj:aspectjrt:1.9.8.RC3"
}

sourceCompatibility = 11
Expand Down