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: README.md
+18-10Lines changed: 18 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ Powertools for AWS Lambda (Java) is a developer toolkit to implement Serverless
9
9
10
10
> Also available in [Python](https://github.com/aws-powertools/powertools-lambda-python), [TypeScript](https://github.com/aws-powertools/powertools-lambda-typescript), and [.NET](https://github.com/aws-powertools/powertools-lambda-dotnet).
More info [here](https://github.com/aws-powertools/powertools-lambda-java/pull/1519/files#diff-b335630551682c19a781afebcf4d07bf978fb1f8ac04c6bf87428ed5106870f5R191).
Copy file name to clipboardExpand all lines: docs/index.md
+19-5Lines changed: 19 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -106,6 +106,12 @@ Powertools for AWS Lambda (Java) dependencies are available in Maven Central. Yo
106
106
<artifactId>powertools-metrics</artifactId>
107
107
<version>{{ powertools.version }}</version>
108
108
</dependency>
109
+
<!-- Make sure to include AspectJ runtime compatible with plugin version -->
110
+
<dependency>
111
+
<groupId>org.aspectj</groupId>
112
+
<artifactId>aspectjrt</artifactId>
113
+
<version>1.9.22</version>
114
+
</dependency>
109
115
...
110
116
</dependencies>
111
117
...
@@ -116,7 +122,7 @@ Powertools for AWS Lambda (Java) dependencies are available in Maven Central. Yo
116
122
<plugin>
117
123
<groupId>dev.aspectj</groupId>
118
124
<artifactId>aspectj-maven-plugin</artifactId>
119
-
<version>1.13.1</version>
125
+
<version>1.14</version>
120
126
<configuration>
121
127
<source>11</source> <!-- or higher -->
122
128
<target>11</target> <!-- or higher -->
@@ -136,6 +142,14 @@ Powertools for AWS Lambda (Java) dependencies are available in Maven Central. Yo
136
142
</aspectLibrary>
137
143
</aspectLibraries>
138
144
</configuration>
145
+
<dependencies>
146
+
<dependency>
147
+
<groupId>org.aspectj</groupId>
148
+
<artifactId>aspectjtools</artifactId>
149
+
<!-- AspectJ compiler version, in sync with runtime -->
150
+
<version>1.9.22</version>
151
+
</dependency>
152
+
</dependencies>
139
153
<executions>
140
154
<execution>
141
155
<goals>
@@ -211,10 +225,10 @@ You may need to add the good version of `aspectjrt` to your dependencies based o
211
225
212
226
Use the following [dependency matrix](https://github.com/eclipse-aspectj/aspectj/blob/master/docs/dist/doc/JavaVersionCompatibility.md) between this library and the JDK:
Copy file name to clipboardExpand all lines: docs/utilities/large_messages.md
+10-2Lines changed: 10 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -114,7 +114,7 @@ of amazon-sns-java-extended-client-lib.
114
114
<plugin>
115
115
<groupId>dev.aspectj</groupId>
116
116
<artifactId>aspectj-maven-plugin</artifactId>
117
-
<version>1.13.1</version>
117
+
<version>1.14</version>
118
118
<configuration>
119
119
<source>11</source> <!-- or higher -->
120
120
<target>11</target> <!-- or higher -->
@@ -126,6 +126,14 @@ of amazon-sns-java-extended-client-lib.
126
126
</aspectLibrary>
127
127
</aspectLibraries>
128
128
</configuration>
129
+
<dependencies>
130
+
<dependency>
131
+
<groupId>org.aspectj</groupId>
132
+
<artifactId>aspectjtools</artifactId>
133
+
<!-- AspectJ compiler version, in sync with runtime -->
134
+
<version>1.9.22</version>
135
+
</dependency>
136
+
</dependencies>
129
137
<executions>
130
138
<execution>
131
139
<goals>
@@ -344,4 +352,4 @@ If you need to customize this `S3Client`, you can leverage the `LargeMessageConf
344
352
It gives more control, especially when dealing with partial failures with SQS (see the batch module).
345
353
- The new module only provides an annotation, an equivalent to the `SqsUtils` class is not available anymore in this new version.
346
354
347
-
Finally, if you are still using the `powertools-sqs` library for batch processing, consider moving to `powertools-batch` at the same time to remove the dependency on this library completely; it has been deprecated and will be removed in v2.
355
+
Finally, if you are still using the `powertools-sqs` library for batch processing, consider moving to `powertools-batch` at the same time to remove the dependency on this library completely; it has been deprecated and will be removed in v2.
0 commit comments