From b5f372aa07b8b74a4fb1045132cae7eeeab70828 Mon Sep 17 00:00:00 2001 From: Pankaj Agrawal Date: Mon, 2 Aug 2021 20:39:36 +0200 Subject: [PATCH] chore: Upgrade to latest(1.14.0) aspectj-maven-plugin --- README.md | 3 +-- docs/index.md | 5 +---- docs/utilities/batch.md | 5 +---- docs/utilities/parameters.md | 4 +--- docs/utilities/sqs_large_message_handling.md | 5 +---- docs/utilities/validation.md | 5 +---- example/HelloWorldFunction/pom.xml | 5 ++--- pom.xml | 9 ++++----- 8 files changed, 12 insertions(+), 29 deletions(-) diff --git a/README.md b/README.md index 82c3cffc7..b18f4eea6 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ And configure the aspectj-maven-plugin to compile-time weave (CTW) the aws-lambd org.codehaus.mojo aspectj-maven-plugin - 1.11 + 1.14.0 1.8 1.8 @@ -74,7 +74,6 @@ And configure the aspectj-maven-plugin to compile-time weave (CTW) the aws-lambd ``` -**Note:** If you are working with Lambda on runtime post java8, please refer [issue](https://github.com/awslabs/aws-lambda-powertools-java/issues/50) for workaround ## Example diff --git a/docs/index.md b/docs/index.md index d0f6fd9ee..b0691ad60 100644 --- a/docs/index.md +++ b/docs/index.md @@ -38,9 +38,6 @@ You can use [SAM](https://aws.amazon.com/serverless/sam/) to quickly setup a ser For more information about the project and available options refer to this [repository](https://github.com/aws-samples/cookiecutter-aws-sam-powertools-java/blob/main/README.md) -!!! note "Using Java 9 or later?" - If you are working with lambda function on runtime **Java 9 or later**, please refer **[issue](https://github.com/awslabs/aws-lambda-powertools-java/issues/50)** for a workaround. - === "Maven" ```xml hl_lines="3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55" @@ -71,7 +68,7 @@ For more information about the project and available options refer to this [repo org.codehaus.mojo aspectj-maven-plugin - 1.11 + 1.14.0 1.8 1.8 diff --git a/docs/utilities/batch.md b/docs/utilities/batch.md index 83a833613..9eadb04ea 100644 --- a/docs/utilities/batch.md +++ b/docs/utilities/batch.md @@ -25,9 +25,6 @@ are returned to the queue. To install this utility, add the following dependency to your project. -!!! note "Using Java 9 or later?" - If you are working with lambda function on runtime **Java 9 or later**, please refer **[issue](https://github.com/awslabs/aws-lambda-powertools-java/issues/50)** for a workaround. - === "Maven" ```xml hl_lines="3 4 5 6 7 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36" @@ -46,7 +43,7 @@ To install this utility, add the following dependency to your project. org.codehaus.mojo aspectj-maven-plugin - 1.11 + 1.14.0 1.8 1.8 diff --git a/docs/utilities/parameters.md b/docs/utilities/parameters.md index 5608859a7..3a0542c3d 100644 --- a/docs/utilities/parameters.md +++ b/docs/utilities/parameters.md @@ -396,7 +396,7 @@ If you want to use the ```@Param``` annotation in your project add configuration org.codehaus.mojo aspectj-maven-plugin - 1.11 + 1.14.0 ... @@ -420,8 +420,6 @@ If you want to use the ```@Param``` annotation in your project add configuration ``` - **Note:** If you are working with lambda function on runtime post java8, please refer [issue](https://github.com/awslabs/aws-lambda-powertools-java/issues/50) for workaround - === "Gradle" ```groovy diff --git a/docs/utilities/sqs_large_message_handling.md b/docs/utilities/sqs_large_message_handling.md index 03f10ca17..2f1deb32f 100644 --- a/docs/utilities/sqs_large_message_handling.md +++ b/docs/utilities/sqs_large_message_handling.md @@ -33,9 +33,6 @@ This utility is compatible with versions *[1.1.0+](https://github.com/awslabs/am To install this utility, add the following dependency to your project. -!!! note "Using Java 9 or later?" - If you are working with lambda function on runtime **Java 9 or later**, please refer **[issue](https://github.com/awslabs/aws-lambda-powertools-java/issues/50)** for a workaround. - === "Maven" ```xml hl_lines="3 4 5 6 7 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36" @@ -54,7 +51,7 @@ To install this utility, add the following dependency to your project. org.codehaus.mojo aspectj-maven-plugin - 1.11 + 1.14.0 1.8 1.8 diff --git a/docs/utilities/validation.md b/docs/utilities/validation.md index 683709727..5b7b49dee 100644 --- a/docs/utilities/validation.md +++ b/docs/utilities/validation.md @@ -15,9 +15,6 @@ This utility provides JSON Schema validation for payloads held within events and To install this utility, add the following dependency to your project. -!!! note "Using Java 9 or later?" - If you are working with lambda function on runtime **Java 9 or later**, please refer **[issue](https://github.com/awslabs/aws-lambda-powertools-java/issues/50)** for a workaround. - === "Maven" ```xml hl_lines="3 4 5 6 7 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36" @@ -36,7 +33,7 @@ To install this utility, add the following dependency to your project. org.codehaus.mojo aspectj-maven-plugin - 1.11 + 1.14.0 1.8 1.8 diff --git a/example/HelloWorldFunction/pom.xml b/example/HelloWorldFunction/pom.xml index 55a97dbb8..17bd8031c 100644 --- a/example/HelloWorldFunction/pom.xml +++ b/example/HelloWorldFunction/pom.xml @@ -80,10 +80,9 @@ - - com.nickwongdev + org.codehaus.mojo aspectj-maven-plugin - 1.12.6 + 1.14.0 ${maven.compiler.source} ${maven.compiler.target} diff --git a/pom.xml b/pom.xml index 7b0711ab3..4a284af1c 100644 --- a/pom.xml +++ b/pom.xml @@ -61,7 +61,7 @@ 1.2.1 3.9.0 3.8.1 - 1.12.6 + 1.14.0 2.22.2 0.8.7 2.7 @@ -244,8 +244,7 @@ ${maven-compiler-plugin.version} - - com.nickwongdev + org.codehaus.mojo aspectj-maven-plugin ${aspectj-maven-plugin.version} @@ -297,9 +296,9 @@ - - com.nickwongdev + org.codehaus.mojo aspectj-maven-plugin + ${aspectj-maven-plugin.version} ${maven.compiler.source} ${maven.compiler.target}