Add Maven coordinates to JLine2/3 modules

This commit is contained in:
Jiri Holusa
2020-10-12 17:49:24 +02:00
committed by Remko Popma
parent 35be57bcee
commit a64c110a6b
2 changed files with 20 additions and 0 deletions

View File

@@ -33,6 +33,16 @@ get command line TAB auto-completion for a picocli-based application running in
## Example
### Maven
```xml
<dependency>
<groupId>info.picocli</groupId>
<artifactId>picocli-shell-jline2</artifactId>
<version>4.5.1</version>
</dependency>
```
```java
import java.io.IOException;
import java.io.PrintWriter;

View File

@@ -67,6 +67,16 @@ JLine [Wiki](https://github.com/jline/jline3/wiki) and some more [Demos](https:/
## Example
### Maven
```xml
<dependency>
<groupId>info.picocli</groupId>
<artifactId>picocli-shell-jline3</artifactId>
<version>4.5.1</version>
</dependency>
```
### Older versions
See examples for older versions on the [wiki](https://github.com/remkop/picocli/wiki/JLine-3-Examples).