You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Kotlin projects should add the `kotlin-kapt` plugin to enable the Kotlin Annotation processing tool (kapt),
356
+
Kotlin projects should add the `kotlin-kapt` plugin to enable the Kotlin Annotation processing tool (https://kotlinlang.org/docs/reference/kapt.html[kapt]),
352
357
then replace `annotationProcessor` with `kapt`:
353
358
354
359
```
@@ -635,7 +640,7 @@ The https://github.com/remkop/picocli/blob/master/picocli-examples[`picocli-exam
635
640
[CAUTION]
636
641
.Interactive options and shell applications with JLine 2
637
642
====
638
-
Interactive options do not work in conjunction with JLine 2's `ConsoleReader`. Either implement a <<Custom Parameter Processing,`IParameterConsumer`>> which uses JLine2's `ConsoleReader` directly or use `picocli-shell-jline3`.
643
+
Interactive options do not work in conjunction with JLine 2's `ConsoleReader`. Either implement a <<Custom Parameter Processing,`IParameterConsumer`>> which uses JLine2's `ConsoleReader` directly or use https://github.com/remkop/picocli/tree/master/picocli-shell-jline3[`picocli-shell-jline3`].
639
644
====
640
645
641
646
=== Short (POSIX) Options
@@ -10380,7 +10385,6 @@ Since picocli dependencies are not available in the Spring Initializr, we have t
By using picocli in source form, you can avoid having an external dependency on picocli.
11866
11915
Picocli has only one source file: link:https://github.com/remkop/picocli/blob/master/src/main/java/picocli/CommandLine.java[CommandLine.java].
11867
-
This facilitates including it in your project in source form to avoid having an external dependency on picocli.
11868
-
11916
+
This facilitates including picocli in your project: simply copy and paste the code of this file into a file called `CommandLine.java`, add it to your project, and enjoy!
0 commit comments