You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/content/index.mdx
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -79,7 +79,7 @@ And configure the aspectj-maven-plugin to compile-time weave (CTW) the aws-lambd
79
79
```groovy
80
80
plugins{
81
81
id 'java'
82
-
id 'aspectj.AspectjGradlePlugin' version '0.0.3'
82
+
id 'aspectj.AspectjGradlePlugin' version '0.0.6'
83
83
}
84
84
repositories {
85
85
jcenter()
@@ -94,8 +94,10 @@ dependencies {
94
94
}
95
95
```
96
96
97
-
**Note:** Please add `aspectjVersion = '1.9.6'` to the `gradle.properties` file. The aspectj plugin works at the moment with gradle 5.x only.
98
-
Please refer to [open issue](https://github.com/awslabs/aws-lambda-powertools-java/issues/146) for more details.
97
+
**Note:**
98
+
99
+
Please add `aspectjVersion = '1.9.6'` to the `gradle.properties` file. The aspectj plugin works at the moment with gradle 5.x only if
100
+
you are using `java 8` as runtime. Please refer to [open issue](https://github.com/awslabs/aws-lambda-powertools-java/issues/146) for more details.
Copy file name to clipboardExpand all lines: example/template.yaml
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ Resources:
16
16
Properties:
17
17
CodeUri: HelloWorldFunction
18
18
Handler: helloworld.App::handleRequest
19
-
Runtime: java8
19
+
Runtime: java11
20
20
MemorySize: 512
21
21
Environment: # More info about Env Vars: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#environment-object
0 commit comments