Skip to content

Commit 287420a

Browse files
authored
update installation instructions
1 parent 4ff8366 commit 287420a

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,13 @@ Api2Pdf.com is a REST API for instantly generating PDF documents from HTML, URLs
1212

1313
## <a name="installation"></a>Installation
1414

15-
Coming soon
15+
The Java client library is available as a Maven Package and can be installed with Maven by including the following dependency in your pom.xml file.
16+
17+
<dependency>
18+
<groupId>com.api2pdf.client</groupId>
19+
<artifactId>api2pdf</artifactId>
20+
<version>1.0.1</version>
21+
</dependency>
1622

1723
## <a name="resources"></a>Resources
1824

@@ -173,4 +179,4 @@ To use the merge endpoint, supply a list of urls to existing PDFs. The engine wi
173179
String[] urls = { "your-url-to-pdf1.pdf", "your-url-to-pdf2.pdf" };
174180
Api2PdfResponse pdfResponse = a2pClient.merge(urls, true, "test.pdf");
175181
System.out.println(pdfResponse.getPdf());
176-
```
182+
```

0 commit comments

Comments
 (0)