Skip to content

Commit 20636f7

Browse files
author
Pankaj Agrawal
committed
chore: Upgrade to latest(1.14.0) aspectj-maven-plugin
1 parent 5354828 commit 20636f7

File tree

8 files changed

+12
-23
lines changed

8 files changed

+12
-23
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ And configure the aspectj-maven-plugin to compile-time weave (CTW) the aws-lambd
4242
<plugin>
4343
<groupId>org.codehaus.mojo</groupId>
4444
<artifactId>aspectj-maven-plugin</artifactId>
45-
<version>1.11</version>
45+
<version>1.14.0</version>
4646
<configuration>
4747
<source>1.8</source>
4848
<target>1.8</target>

docs/index.md

+1-4
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,6 @@ You can use [SAM](https://aws.amazon.com/serverless/sam/) to quickly setup a ser
3838

3939
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)
4040

41-
!!! note "Using Java 9 or later?"
42-
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.
43-
4441
=== "Maven"
4542

4643
```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
7168
<plugin>
7269
<groupId>org.codehaus.mojo</groupId>
7370
<artifactId>aspectj-maven-plugin</artifactId>
74-
<version>1.11</version>
71+
<version>1.14.0</version>
7572
<configuration>
7673
<source>1.8</source>
7774
<target>1.8</target>

docs/utilities/batch.md

+1-4
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@ are returned to the queue.
2525

2626
To install this utility, add the following dependency to your project.
2727

28-
!!! note "Using Java 9 or later?"
29-
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.
30-
3128
=== "Maven"
3229
```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"
3330
<dependencies>
@@ -46,7 +43,7 @@ To install this utility, add the following dependency to your project.
4643
<plugin>
4744
<groupId>org.codehaus.mojo</groupId>
4845
<artifactId>aspectj-maven-plugin</artifactId>
49-
<version>1.11</version>
46+
<version>1.14.0</version>
5047
<configuration>
5148
<source>1.8</source>
5249
<target>1.8</target>

docs/utilities/parameters.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ If you want to use the ```@Param``` annotation in your project add configuration
396396
<plugin>
397397
<groupId>org.codehaus.mojo</groupId>
398398
<artifactId>aspectj-maven-plugin</artifactId>
399-
<version>1.11</version>
399+
<version>1.14.0</version>
400400
<configuration>
401401
...
402402
<aspectLibraries>

docs/utilities/sqs_large_message_handling.md

+1-4
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,6 @@ This utility is compatible with versions *[1.1.0+](https://github.com/awslabs/am
3333

3434
To install this utility, add the following dependency to your project.
3535

36-
!!! note "Using Java 9 or later?"
37-
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.
38-
3936
=== "Maven"
4037
```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"
4138
<dependencies>
@@ -54,7 +51,7 @@ To install this utility, add the following dependency to your project.
5451
<plugin>
5552
<groupId>org.codehaus.mojo</groupId>
5653
<artifactId>aspectj-maven-plugin</artifactId>
57-
<version>1.11</version>
54+
<version>1.14.0</version>
5855
<configuration>
5956
<source>1.8</source>
6057
<target>1.8</target>

docs/utilities/validation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ To install this utility, add the following dependency to your project.
3636
<plugin>
3737
<groupId>org.codehaus.mojo</groupId>
3838
<artifactId>aspectj-maven-plugin</artifactId>
39-
<version>1.11</version>
39+
<version>1.14.0</version>
4040
<configuration>
4141
<source>1.8</source>
4242
<target>1.8</target>

example/HelloWorldFunction/pom.xml

+2-3
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,9 @@
8080
<build>
8181
<plugins>
8282
<plugin>
83-
<!-- Refer https://github.com/awslabs/aws-lambda-powertools-java/issues/50 -->
84-
<groupId>com.nickwongdev</groupId>
83+
<groupId>org.codehaus.mojo</groupId>
8584
<artifactId>aspectj-maven-plugin</artifactId>
86-
<version>1.12.6</version>
85+
<version>1.14.0</version>
8786
<configuration>
8887
<source>${maven.compiler.source}</source>
8988
<target>${maven.compiler.target}</target>

pom.xml

+4-5
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
<lambda.core.version>1.2.1</lambda.core.version>
6262
<lambda.events.version>3.9.0</lambda.events.version>
6363
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
64-
<aspectj-maven-plugin.version>1.12.6</aspectj-maven-plugin.version>
64+
<aspectj-maven-plugin.version>1.14.0</aspectj-maven-plugin.version>
6565
<maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version>
6666
<jacoco-maven-plugin.version>0.8.7</jacoco-maven-plugin.version>
6767
<cobertura-maven-plugin.version>2.7</cobertura-maven-plugin.version>
@@ -244,8 +244,7 @@
244244
<version>${maven-compiler-plugin.version}</version>
245245
</plugin>
246246
<plugin>
247-
<!-- We can use official one after https://github.com/mojohaus/aspectj-maven-plugin/pull/45 -->
248-
<groupId>com.nickwongdev</groupId>
247+
<groupId>org.codehaus.mojo</groupId>
249248
<artifactId>aspectj-maven-plugin</artifactId>
250249
<version>${aspectj-maven-plugin.version}</version>
251250
</plugin>
@@ -297,9 +296,9 @@
297296
</configuration>
298297
</plugin>
299298
<plugin>
300-
<!-- We can use official one after https://github.com/mojohaus/aspectj-maven-plugin/pull/45 -->
301-
<groupId>com.nickwongdev</groupId>
299+
<groupId>org.codehaus.mojo</groupId>
302300
<artifactId>aspectj-maven-plugin</artifactId>
301+
<version>${aspectj-maven-plugin.version}</version>
303302
<configuration>
304303
<source>${maven.compiler.source}</source>
305304
<target>${maven.compiler.target}</target>

0 commit comments

Comments
 (0)