Skip to content

Commit 0d0fd9a

Browse files
stevehouelPankaj Agrawal
authored and
Pankaj Agrawal
committed
docs: refactoring docs according to package split
1 parent 9e68d99 commit 0d0fd9a

File tree

2 files changed

+23
-5
lines changed

2 files changed

+23
-5
lines changed

README.md

+11-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,12 @@ Powertools is available in Maven Central. You can use your favourite dependency
1616
...
1717
<dependency>
1818
<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>
2025
<version>YOUR_REQUIRED_VERSION</version>
2126
</dependency>
2227
...
@@ -40,7 +45,11 @@ And configure the aspectj-maven-plugin to compile-time weave (CTW) the aws-lambd
4045
<aspectLibraries>
4146
<aspectLibrary>
4247
<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>
4453
</aspectLibrary>
4554
</aspectLibraries>
4655
</configuration>

docs/content/index.mdx

+12-3
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,20 @@ Powertools is a suite of utilities for AWS Lambda Functions that makes tracing w
77

88
## Install
99

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
1111

1212
* [maven](https://maven.apache.org/):
1313
```xml
1414
<dependencies>
1515
...
1616
<dependency>
1717
<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>
1924
<version>YOUR_REQUIRED_VERSION</version>
2025
</dependency>
2126
...
@@ -39,7 +44,11 @@ And configure the aspectj-maven-plugin to compile-time weave (CTW) the aws-lambd
3944
<aspectLibraries>
4045
<aspectLibrary>
4146
<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>
4352
</aspectLibrary>
4453
</aspectLibraries>
4554
</configuration>

0 commit comments

Comments
 (0)