Skip to content

Commit

Permalink
Merge pull request #417 from bloxbean/doc_update_0.6.0
Browse files Browse the repository at this point in the history
Doc update for 0.6.0-beta1
  • Loading branch information
satran004 authored Aug 24, 2024
2 parents 6719730 + 07746b2 commit 5ec4ed5
Show file tree
Hide file tree
Showing 13 changed files with 7,347 additions and 6,168 deletions.
1 change: 1 addition & 0 deletions docs/CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cardano-client.dev
7 changes: 7 additions & 0 deletions docs/docs/annotations/_category_.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"label": "Annotations",
"position": 4,
"link": {
"type": "generated-index"
}
}
46 changes: 46 additions & 0 deletions docs/docs/annotations/dependencies.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
---
description: Annotation Processor Dependency
sidebar_label: Dependencies
sidebar_position: 1
---

# Dependencies

## Maven

Add the following dependency to pom.xml.

```xml
<dependencies>
...
<dependency>
<groupId>com.bloxbean.cardano</groupId>
<artifactId>cardano-client-annotation-processor</artifactId>
<version>${cardano.client.version}</version>
<scope>compile</scope>
</dependency>
</dependencies>
```

Alternatively, you can also add the following dependency to plugin section of pom.xml.

```xml
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>com.bloxbean.cardano</groupId>
<artifactId>cardano-client-annotation-processor</artifactId>
<version>${cardano.client.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
```

## Gradle

//TODO
Loading

0 comments on commit 5ec4ed5

Please sign in to comment.