File tree 2 files changed +23
-5
lines changed
2 files changed +23
-5
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,12 @@ Powertools is available in Maven Central. You can use your favourite dependency
16
16
...
17
17
<dependency >
18
18
<groupId >software.amazon.lambda</groupId >
19
- <artifactId >aws-lambda-powertools-java</artifactId >
19
+ <artifactId >powertools-tracing</artifactId >
20
+ <version >YOUR_REQUIRED_VERSION</version >
21
+ </dependency >
22
+ <dependency >
23
+ <groupId >software.amazon.lambda</groupId >
24
+ <artifactId >powertools-logging</artifactId >
20
25
<version >YOUR_REQUIRED_VERSION</version >
21
26
</dependency >
22
27
...
@@ -40,7 +45,11 @@ And configure the aspectj-maven-plugin to compile-time weave (CTW) the aws-lambd
40
45
<aspectLibraries >
41
46
<aspectLibrary >
42
47
<groupId >software.amazon.lambda</groupId >
43
- <artifactId >aws-lambda-powertools-java</artifactId >
48
+ <artifactId >powertools-logging</artifactId >
49
+ </aspectLibrary >
50
+ <aspectLibrary >
51
+ <groupId >software.amazon.lambda</groupId >
52
+ <artifactId >powertools-tracing</artifactId >
44
53
</aspectLibrary >
45
54
</aspectLibraries >
46
55
</configuration >
Original file line number Diff line number Diff line change @@ -7,15 +7,20 @@ Powertools is a suite of utilities for AWS Lambda Functions that makes tracing w
7
7
8
8
## Install
9
9
10
- Powertools is available in Maven Central. You can use your favourite dependency management tool to install it
10
+ Powertools dependencies are available in Maven Central. You can use your favourite dependency management tool to install it
11
11
12
12
* [ maven] ( https://maven.apache.org/ ) :
13
13
``` xml
14
14
<dependencies >
15
15
...
16
16
<dependency >
17
17
<groupId >software.amazon.lambda</groupId >
18
- <artifactId >aws-lambda-powertools-java</artifactId >
18
+ <artifactId >powertools-tracing</artifactId >
19
+ <version >YOUR_REQUIRED_VERSION</version >
20
+ </dependency >
21
+ <dependency >
22
+ <groupId >software.amazon.lambda</groupId >
23
+ <artifactId >powertools-logging</artifactId >
19
24
<version >YOUR_REQUIRED_VERSION</version >
20
25
</dependency >
21
26
...
@@ -39,7 +44,11 @@ And configure the aspectj-maven-plugin to compile-time weave (CTW) the aws-lambd
39
44
<aspectLibraries >
40
45
<aspectLibrary >
41
46
<groupId >software.amazon.lambda</groupId >
42
- <artifactId >aws-lambda-powertools-java</artifactId >
47
+ <artifactId >powertools-tracing</artifactId >
48
+ </aspectLibrary >
49
+ <aspectLibrary >
50
+ <groupId >software.amazon.lambda</groupId >
51
+ <artifactId >powertools-logging</artifactId >
43
52
</aspectLibrary >
44
53
</aspectLibraries >
45
54
</configuration >
You can’t perform that action at this time.
0 commit comments