Skip to content

Commit fefaaef

Browse files
committed
Merge branch 'main' into dev
2 parents 6130b3b + 4b3e5fb commit fefaaef

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

.github/workflows/publish-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Deploy JavaDoc
16-
uses: MathieuSoysal/Javadoc-publisher.yml@v3.02
16+
uses: MathieuSoysal/Javadoc-publisher.yml@v3.0.2
1717
with:
1818
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1919
javadoc-branch: javadoc
2020
java-version: 17
21-
project: gradle
21+
project: gradle

README.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,21 @@
1010
A command line argument parser for Java 17 with <br>
1111
ease of use and high customization possibilities in mind.
1212
</strong>
13+
<br><br>
14+
15+
[![Maven Central Version](https://img.shields.io/maven-central/v/io.github.darvil82/lanat)](https://central.sonatype.com/artifact/io.github.darvil82/lanat)
16+
[![APIdia](https://apidia.net/mvn/io.github.darvil82/lanat/badge.svg)](https://apidia.net/mvn/io.github.darvil82/lanat)
17+
1318
</div>
1419

15-
<br><br>
20+
<br>
1621

1722
## Example
1823
- First, we define our Command by creating a *Command Template*.
1924

2025
```java
2126
@Command.Define
22-
class MyProgram {
27+
class MyProgram extends CommandTemplate {
2328
@Argument.Define(required = true, positional = true, description = "The name of the user.")
2429
public String name;
2530

@@ -64,7 +69,8 @@ Check out the [website](https://darvil82.github.io/lanat-web/) for more informat
6469
[Click here](https://darvil82.github.io/lanat-docs/getting-lanat.html) to get started with Lanat, and to check out the
6570
full documentation of the latest stable version.
6671

67-
Javadocs for the latest stable version is available [here](https://darvil82.github.io/lanat/).
72+
Javadocs for the latest stable version are available online hosted on [APIdia](https://apidia.net/mvn/io.github.darvil82/lanat)
73+
and on [GitHub pages](https://darvil82.github.io/lanat).
6874

6975

7076
## Installation

0 commit comments

Comments
 (0)