Skip to content

Commit 5ec4ed5

Browse files
authored
Merge pull request #417 from bloxbean/doc_update_0.6.0
Doc update for 0.6.0-beta1
2 parents 6719730 + 07746b2 commit 5ec4ed5

13 files changed

+7347
-6168
lines changed

docs/CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
cardano-client.dev

docs/docs/annotations/_category_.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"label": "Annotations",
3+
"position": 4,
4+
"link": {
5+
"type": "generated-index"
6+
}
7+
}

docs/docs/annotations/dependencies.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
---
2+
description: Annotation Processor Dependency
3+
sidebar_label: Dependencies
4+
sidebar_position: 1
5+
---
6+
7+
# Dependencies
8+
9+
## Maven
10+
11+
Add the following dependency to pom.xml.
12+
13+
```xml
14+
<dependencies>
15+
...
16+
<dependency>
17+
<groupId>com.bloxbean.cardano</groupId>
18+
<artifactId>cardano-client-annotation-processor</artifactId>
19+
<version>${cardano.client.version}</version>
20+
<scope>compile</scope>
21+
</dependency>
22+
</dependencies>
23+
```
24+
25+
Alternatively, you can also add the following dependency to plugin section of pom.xml.
26+
27+
```xml
28+
<plugin>
29+
<groupId>org.apache.maven.plugins</groupId>
30+
<artifactId>maven-compiler-plugin</artifactId>
31+
<version>3.8.1</version>
32+
<configuration>
33+
<annotationProcessorPaths>
34+
<path>
35+
<groupId>com.bloxbean.cardano</groupId>
36+
<artifactId>cardano-client-annotation-processor</artifactId>
37+
<version>${cardano.client.version}</version>
38+
</path>
39+
</annotationProcessorPaths>
40+
</configuration>
41+
</plugin>
42+
```
43+
44+
## Gradle
45+
46+
//TODO

0 commit comments

Comments
 (0)