File tree Expand file tree Collapse file tree 40 files changed +46
-46
lines changed
powertools-examples-batch
powertools-examples-cloudformation
powertools-examples-core-utilities
powertools-examples-idempotency
powertools-examples-parameters
powertools-examples-serialization
powertools-examples-validation
powertools-cloudformation
powertools-idempotency-core
powertools-idempotency-dynamodb
powertools-large-messages
powertools-logging-logback
powertools-parameters-appconfig
powertools-parameters-dynamodb
powertools-parameters-secrets
powertools-parameters-ssm
powertools-parameters-tests Expand file tree Collapse file tree 40 files changed +46
-46
lines changed Original file line number Diff line number Diff line change @@ -22,17 +22,17 @@ Powertools for AWS Lambda (Java) is available in Maven Central. You can use your
22
22
<dependency >
23
23
<groupId >software.amazon.lambda</groupId >
24
24
<artifactId >powertools-tracing</artifactId >
25
- <version >2.0.0-RC1 </version >
25
+ <version >2.0.0</version >
26
26
</dependency >
27
27
<dependency >
28
28
<groupId >software.amazon.lambda</groupId >
29
29
<artifactId >powertools-logging</artifactId >
30
- <version >2.0.0-RC1 </version >
30
+ <version >2.0.0</version >
31
31
</dependency >
32
32
<dependency >
33
33
<groupId >software.amazon.lambda</groupId >
34
34
<artifactId >powertools-metrics</artifactId >
35
- <version >2.0.0-RC1 </version >
35
+ <version >2.0.0</version >
36
36
</dependency >
37
37
...
38
38
</dependencies >
Original file line number Diff line number Diff line change 20
20
21
21
<groupId >software.amazon.lambda</groupId >
22
22
<artifactId >powertools-examples</artifactId >
23
- <version >2.0.0-RC1 </version >
23
+ <version >2.0.0</version >
24
24
<packaging >pom</packaging >
25
25
26
26
<name >Powertools for AWS Lambda (Java) - Examples</name >
Original file line number Diff line number Diff line change 5
5
<modelVersion >4.0.0</modelVersion >
6
6
7
7
<groupId >software.amazon.lambda.examples</groupId >
8
- <version >2.0.0-RC1 </version >
8
+ <version >2.0.0</version >
9
9
<artifactId >powertools-examples-batch</artifactId >
10
10
<packaging >jar</packaging >
11
11
<name >Powertools for AWS Lambda (Java) - Examples - Batch</name >
Original file line number Diff line number Diff line change 3
3
<modelVersion >4.0.0</modelVersion >
4
4
5
5
<groupId >software.amazon.lambda.examples</groupId >
6
- <version >2.0.0-RC1 </version >
6
+ <version >2.0.0</version >
7
7
<artifactId >powertools-examples-cloudformation</artifactId >
8
8
<packaging >jar</packaging >
9
9
Original file line number Diff line number Diff line change 6
6
<groupId >software.amazon.lambda.examples</groupId >
7
7
<!-- TODO TODO TODO this should build from SNAPSHOT, but it doesn't, because the snapshots
8
8
don't appear in the docker environment CDK builds it in in our CDK tests. How to procede? V2 blocker -->
9
- <version >2.0.0-RC1 </version >
9
+ <version >2.0.0</version >
10
10
<artifactId >powertools-examples-core-utilities-cdk</artifactId >
11
11
<packaging >jar</packaging >
12
12
Original file line number Diff line number Diff line change 4
4
<modelVersion >4.0.0</modelVersion >
5
5
<groupId >software.amazon.lambda.examples</groupId >
6
6
<artifactId >cdk</artifactId >
7
- <version >2.0.0-RC1 </version >
7
+ <version >2.0.0</version >
8
8
<properties >
9
9
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
10
10
<cdk .version>2.162.1</cdk .version>
Original file line number Diff line number Diff line change @@ -29,8 +29,8 @@ dependencies {
29
29
implementation ' com.amazonaws:aws-lambda-java-events:3.11.0'
30
30
implementation ' com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.2'
31
31
implementation ' org.aspectj:aspectjrt:1.9.20.1'
32
- aspect ' software.amazon.lambda:powertools-tracing:2.0.0-RC1 '
33
- aspect ' software.amazon.lambda:powertools-logging-log4j:2.0.0-RC1 '
34
- aspect ' software.amazon.lambda:powertools-metrics:2.0.0-RC1 '
32
+ aspect ' software.amazon.lambda:powertools-tracing:2.0.0'
33
+ aspect ' software.amazon.lambda:powertools-logging-log4j:2.0.0'
34
+ aspect ' software.amazon.lambda:powertools-metrics:2.0.0'
35
35
}
36
36
Original file line number Diff line number Diff line change @@ -15,9 +15,9 @@ dependencies {
15
15
implementation(" com.amazonaws:aws-lambda-java-events:3.11.3" )
16
16
implementation(" com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.15.2" )
17
17
implementation(" org.aspectj:aspectjrt:1.9.20.1" )
18
- aspect(" software.amazon.lambda:powertools-tracing:2.0.0-RC1 " )
19
- aspect(" software.amazon.lambda:powertools-logging-log4j:2.0.0-RC1 " )
20
- aspect(" software.amazon.lambda:powertools-metrics:2.0.0-RC1 " )
18
+ aspect(" software.amazon.lambda:powertools-tracing:2.0.0" )
19
+ aspect(" software.amazon.lambda:powertools-logging-log4j:2.0.0" )
20
+ aspect(" software.amazon.lambda:powertools-metrics:2.0.0" )
21
21
implementation(" org.jetbrains.kotlin:kotlin-stdlib:1.9.24" )
22
22
}
23
23
Original file line number Diff line number Diff line change 4
4
5
5
<name >Powertools for AWS Lambda (Java) - Examples - Core Utilities (logging, tracing, metrics) with SAM GraalVM</name >
6
6
<groupId >software.amazon.lambda.examples</groupId >
7
- <version >2.0.0-RC1 </version >
7
+ <version >2.0.0</version >
8
8
<artifactId >powertools-examples-core-utilities-sam-graalvm</artifactId >
9
9
<packaging >jar</packaging >
10
10
Original file line number Diff line number Diff line change 4
4
5
5
<name >Powertools for AWS Lambda (Java) - Examples - Core Utilities (logging, tracing, metrics) with SAM</name >
6
6
<groupId >software.amazon.lambda.examples</groupId >
7
- <version >2.0.0-RC1 </version >
7
+ <version >2.0.0</version >
8
8
<artifactId >powertools-examples-core-utilities-sam</artifactId >
9
9
<packaging >jar</packaging >
10
10
Original file line number Diff line number Diff line change 4
4
5
5
<name >Powertools for AWS Lambda (Java) - Examples - Core Utilities (logging, tracing, metrics) with Serverless</name >
6
6
<groupId >software.amazon.lambda.examples</groupId >
7
- <version >2.0.0-RC1 </version >
7
+ <version >2.0.0</version >
8
8
<artifactId >powertools-examples-core-utilities-serverless</artifactId >
9
9
<packaging >jar</packaging >
10
10
Original file line number Diff line number Diff line change 4
4
5
5
<name >Powertools for AWS Lambda (Java) - Examples - Core Utilities (logging, tracing, metrics) with Terraform</name >
6
6
<groupId >software.amazon.lambda.examples</groupId >
7
- <version >2.0.0-RC1 </version >
7
+ <version >2.0.0</version >
8
8
<artifactId >powertools-examples-core-utilities-terraform</artifactId >
9
9
<packaging >jar</packaging >
10
10
Original file line number Diff line number Diff line change 17
17
<modelVersion >4.0.0</modelVersion >
18
18
19
19
<groupId >software.amazon.lambda.examples</groupId >
20
- <version >2.0.0-RC1 </version >
20
+ <version >2.0.0</version >
21
21
<artifactId >powertools-examples-idempotency</artifactId >
22
22
<packaging >jar</packaging >
23
23
<name >Powertools for AWS Lambda (Java) - Examples - Idempotency</name >
Original file line number Diff line number Diff line change 2
2
xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" >
3
3
<modelVersion >4.0.0</modelVersion >
4
4
<groupId >software.amazon.lambda.examples</groupId >
5
- <version >2.0.0-RC1 </version >
5
+ <version >2.0.0</version >
6
6
<artifactId >powertools-examples-parameters-sam-graalvm</artifactId >
7
7
<packaging >jar</packaging >
8
8
<name >Powertools for AWS Lambda (Java) - Examples - Parameters GraalVM</name >
Original file line number Diff line number Diff line change 2
2
xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" >
3
3
<modelVersion >4.0.0</modelVersion >
4
4
<groupId >software.amazon.lambda.examples</groupId >
5
- <version >2.0.0-RC1 </version >
5
+ <version >2.0.0</version >
6
6
<artifactId >powertools-examples-parameters-sam</artifactId >
7
7
<packaging >jar</packaging >
8
8
<name >Powertools for AWS Lambda (Java) - Examples - Parameters</name >
Original file line number Diff line number Diff line change 2
2
xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" >
3
3
<modelVersion >4.0.0</modelVersion >
4
4
<groupId >software.amazon.lambda.examples</groupId >
5
- <version >2.0.0-RC1 </version >
5
+ <version >2.0.0</version >
6
6
<artifactId >powertools-examples-serialization</artifactId >
7
7
<packaging >jar</packaging >
8
8
<name >Powertools for AWS Lambda (Java) - Examples - Serialization</name >
Original file line number Diff line number Diff line change 16
16
xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" >
17
17
<modelVersion >4.0.0</modelVersion >
18
18
<groupId >software.amazon.lambda.examples</groupId >
19
- <version >2.0.0-RC1 </version >
19
+ <version >2.0.0</version >
20
20
<artifactId >powertools-examples-validation</artifactId >
21
21
<packaging >jar</packaging >
22
22
<name >Powertools for AWS Lambda (Java) - Examples - Validation</name >
Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ extra_javascript:
118
118
119
119
extra :
120
120
powertools :
121
- version : 2.0.0-RC1
121
+ version : 2.0.0
122
122
123
123
repo_url : https://github.com/aws-powertools/powertools-lambda-java
124
124
edit_uri : edit/main/docs
Original file line number Diff line number Diff line change 20
20
21
21
<groupId >software.amazon.lambda</groupId >
22
22
<artifactId >powertools-parent</artifactId >
23
- <version >2.0.0-RC1 </version >
23
+ <version >2.0.0</version >
24
24
<packaging >pom</packaging >
25
25
26
26
<name >Powertools for AWS Lambda (Java) - Parent</name >
Original file line number Diff line number Diff line change 6
6
<parent >
7
7
<groupId >software.amazon.lambda</groupId >
8
8
<artifactId >powertools-parent</artifactId >
9
- <version >2.0.0-RC1 </version >
9
+ <version >2.0.0</version >
10
10
</parent >
11
11
12
12
<description >A suite of utilities that makes batch message processing using AWS Lambda easier.</description >
Original file line number Diff line number Diff line change 24
24
<parent >
25
25
<artifactId >powertools-parent</artifactId >
26
26
<groupId >software.amazon.lambda</groupId >
27
- <version >2.0.0-RC1 </version >
27
+ <version >2.0.0</version >
28
28
</parent >
29
29
30
30
<name >Powertools for AWS Lambda (Java) - Cloudformation</name >
Original file line number Diff line number Diff line change 24
24
<parent >
25
25
<artifactId >powertools-parent</artifactId >
26
26
<groupId >software.amazon.lambda</groupId >
27
- <version >2.0.0-RC1 </version >
27
+ <version >2.0.0</version >
28
28
</parent >
29
29
30
30
<name >Powertools for AWS Lambda (Java) - Common Internal Utilities</name >
Original file line number Diff line number Diff line change 20
20
<parent >
21
21
<artifactId >powertools-parent</artifactId >
22
22
<groupId >software.amazon.lambda</groupId >
23
- <version >2.0.0-RC1 </version >
23
+ <version >2.0.0</version >
24
24
</parent >
25
25
26
26
<artifactId >powertools-e2e-tests</artifactId >
Original file line number Diff line number Diff line change 21
21
<parent >
22
22
<groupId >software.amazon.lambda</groupId >
23
23
<artifactId >powertools-parent</artifactId >
24
- <version >2.0.0-RC1 </version >
24
+ <version >2.0.0</version >
25
25
</parent >
26
26
27
27
<artifactId >powertools-idempotency</artifactId >
Original file line number Diff line number Diff line change 21
21
<parent >
22
22
<groupId >software.amazon.lambda</groupId >
23
23
<artifactId >powertools-idempotency</artifactId >
24
- <version >2.0.0-RC1 </version >
24
+ <version >2.0.0</version >
25
25
</parent >
26
26
27
27
<artifactId >powertools-idempotency-core</artifactId >
Original file line number Diff line number Diff line change 21
21
<parent >
22
22
<groupId >software.amazon.lambda</groupId >
23
23
<artifactId >powertools-idempotency</artifactId >
24
- <version >2.0.0-RC1 </version >
24
+ <version >2.0.0</version >
25
25
</parent >
26
26
27
27
<artifactId >powertools-idempotency-dynamodb</artifactId >
Original file line number Diff line number Diff line change 23
23
<parent >
24
24
<groupId >software.amazon.lambda</groupId >
25
25
<artifactId >powertools-parent</artifactId >
26
- <version >2.0.0-RC1 </version >
26
+ <version >2.0.0</version >
27
27
</parent >
28
28
29
29
<artifactId >powertools-large-messages</artifactId >
Original file line number Diff line number Diff line change 21
21
<parent >
22
22
<artifactId >powertools-parent</artifactId >
23
23
<groupId >software.amazon.lambda</groupId >
24
- <version >2.0.0-RC1 </version >
24
+ <version >2.0.0</version >
25
25
</parent >
26
26
27
27
<name >Powertools for AWS Lambda (Java) - Logging</name >
Original file line number Diff line number Diff line change 7
7
<parent >
8
8
<artifactId >powertools-parent</artifactId >
9
9
<groupId >software.amazon.lambda</groupId >
10
- <version >2.0.0-RC1 </version >
10
+ <version >2.0.0</version >
11
11
<relativePath >../../pom.xml</relativePath >
12
12
</parent >
13
13
Original file line number Diff line number Diff line change 6
6
<parent >
7
7
<artifactId >powertools-parent</artifactId >
8
8
<groupId >software.amazon.lambda</groupId >
9
- <version >2.0.0-RC1 </version >
9
+ <version >2.0.0</version >
10
10
<relativePath >../../pom.xml</relativePath >
11
11
</parent >
12
12
Original file line number Diff line number Diff line change 24
24
<parent >
25
25
<artifactId >powertools-parent</artifactId >
26
26
<groupId >software.amazon.lambda</groupId >
27
- <version >2.0.0-RC1 </version >
27
+ <version >2.0.0</version >
28
28
</parent >
29
29
30
30
<name >Powertools for AWS Lambda (Java) - Metrics</name >
Original file line number Diff line number Diff line change 21
21
<parent >
22
22
<artifactId >powertools-parent</artifactId >
23
23
<groupId >software.amazon.lambda</groupId >
24
- <version >2.0.0-RC1 </version >
24
+ <version >2.0.0</version >
25
25
</parent >
26
26
27
27
<artifactId >powertools-parameters</artifactId >
Original file line number Diff line number Diff line change 7
7
<parent >
8
8
<groupId >software.amazon.lambda</groupId >
9
9
<artifactId >powertools-parent</artifactId >
10
- <version >2.0.0-RC1 </version >
10
+ <version >2.0.0</version >
11
11
<relativePath >../../pom.xml</relativePath >
12
12
</parent >
13
13
Original file line number Diff line number Diff line change 7
7
<parent >
8
8
<groupId >software.amazon.lambda</groupId >
9
9
<artifactId >powertools-parent</artifactId >
10
- <version >2.0.0-RC1 </version >
10
+ <version >2.0.0</version >
11
11
<relativePath >../../pom.xml</relativePath >
12
12
</parent >
13
13
Original file line number Diff line number Diff line change 7
7
<parent >
8
8
<groupId >software.amazon.lambda</groupId >
9
9
<artifactId >powertools-parent</artifactId >
10
- <version >2.0.0-RC1 </version >
10
+ <version >2.0.0</version >
11
11
<relativePath >../../pom.xml</relativePath >
12
12
</parent >
13
13
Original file line number Diff line number Diff line change 7
7
<parent >
8
8
<groupId >software.amazon.lambda</groupId >
9
9
<artifactId >powertools-parent</artifactId >
10
- <version >2.0.0-RC1 </version >
10
+ <version >2.0.0</version >
11
11
<relativePath >../../pom.xml</relativePath >
12
12
</parent >
13
13
Original file line number Diff line number Diff line change 6
6
<parent >
7
7
<groupId >software.amazon.lambda</groupId >
8
8
<artifactId >powertools-parent</artifactId >
9
- <version >2.0.0-RC1 </version >
9
+ <version >2.0.0</version >
10
10
<relativePath >../../pom.xml</relativePath >
11
11
</parent >
12
12
Original file line number Diff line number Diff line change 21
21
<parent >
22
22
<artifactId >powertools-parent</artifactId >
23
23
<groupId >software.amazon.lambda</groupId >
24
- <version >2.0.0-RC1 </version >
24
+ <version >2.0.0</version >
25
25
</parent >
26
26
27
27
<artifactId >powertools-serialization</artifactId >
Original file line number Diff line number Diff line change 24
24
<parent >
25
25
<artifactId >powertools-parent</artifactId >
26
26
<groupId >software.amazon.lambda</groupId >
27
- <version >2.0.0-RC1 </version >
27
+ <version >2.0.0</version >
28
28
</parent >
29
29
30
30
<name >Powertools for AWS Lambda (Java) - Tracing</name >
Original file line number Diff line number Diff line change 24
24
<parent >
25
25
<artifactId >powertools-parent</artifactId >
26
26
<groupId >software.amazon.lambda</groupId >
27
- <version >2.0.0-RC1 </version >
27
+ <version >2.0.0</version >
28
28
</parent >
29
29
30
30
<name >Powertools for AWS Lambda (Java) - Validation</name >
You can’t perform that action at this time.
0 commit comments