picocli icon indicating copy to clipboard operation
picocli copied to clipboard

Picocli is a modern framework for building powerful, user-friendly, GraalVM-enabled command line apps with ease. It supports colors, autocompletion, subcommands, and more. In 1 source file so apps ca...

Results 213 picocli issues
Sort by recently updated
recently updated
newest added

Bumps net.ltgt.gradle:gradle-errorprone-plugin from 3.1.0 to 4.0.1. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=net.ltgt.gradle:gradle-errorprone-plugin&package-manager=gradle&previous-version=3.1.0&new-version=4.0.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

type: dependency :books:
java

Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.4 to 4.1.7. Release notes Sourced from actions/checkout's releases. v4.1.7 What's Changed Bump the minor-npm-dependencies group across 1 directory with 4 updates by @​dependabot in actions/checkout#1739 Bump...

type: dependency :books:
github_actions

This does not fix it, but contains a test case for #2294

I am getting a NullPointerException apparently from within picocli code when attempting to upgrade to 4.7.6 from 4.7.5 (where the app works AOK). I get ``` NullPointerException: Cannot invoke "java.lang.ClassLoader.getResource(String)"...

type: bug :bug:

Bumps [jakarta.validation:jakarta.validation-api](https://github.com/jakartaee/validation) from 3.0.2 to 3.1.0. Release notes Sourced from jakarta.validation:jakarta.validation-api's releases. 3.1.0-M1 The 3.1.0-M1 milestone release for EE 11 What's Changed Use the same lock for all methods accessing...

type: dependency :books:
java

Bumps [org.jetbrains.kotlin:kotlin-script-runtime](https://github.com/JetBrains/kotlin) from 1.9.23 to 2.0.0. Release notes Sourced from org.jetbrains.kotlin:kotlin-script-runtime's releases. Kotlin 2.0.0 Changelog Analysis. API New Features KT-65327 Support reading klib contents in Analysis API Performance Improvements KT-65560...

type: dependency :books:
java

Bumps [org.jetbrains.kotlin:kotlin-gradle-plugin](https://github.com/JetBrains/kotlin) from 1.9.23 to 2.0.0. Release notes Sourced from org.jetbrains.kotlin:kotlin-gradle-plugin's releases. Kotlin 2.0.0 Changelog Analysis. API New Features KT-65327 Support reading klib contents in Analysis API Performance Improvements KT-65560...

type: dependency :books:
java

When using a non-validating ArgGroup in a MixIn, the options of the ArgGroup are doubled in the "Usage" line. When placing the ArgGroup directly in the command class, the options...

Consider: ```java @CommandLine.Command(name = "dashed") public class DashedOption implements Callable { @CommandLine.Option(names = "-x") String x; @CommandLine.Option(names = "--required", required = true) String required; @Override public Integer call() throws IOException...

Hi, thanks for all the great work on picocli, using it with great success! One thing that appears to be an issue (but perhaps my ignorance?) is when trying to...