Skip to content

Commit

Permalink
Using the fixed version provider
Browse files Browse the repository at this point in the history
  • Loading branch information
janvanmansum committed Jul 5, 2024
1 parent 8699490 commit 019a73d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
<dependency>
<groupId>nl.knaw.dans</groupId>
<artifactId>dans-java-utils</artifactId>
<version>0.12.0</version>
<version>0.18.0</version>
</dependency>
<dependency>
<groupId>nl.knaw.dans</groupId>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/nl/knaw/dans/dvcli/DdDataverseCli.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@
import nl.knaw.dans.dvcli.command.DeleteDraft;
import nl.knaw.dans.dvcli.config.DdDataverseCliConfig;
import nl.knaw.dans.lib.util.AbstractCommandLineApp;
import nl.knaw.dans.lib.util.CliVersionProvider;
import nl.knaw.dans.lib.util.PicocliVersionProvider;
import picocli.CommandLine;
import picocli.CommandLine.Command;

@Command(name = "dataverse",
mixinStandardHelpOptions = true,
versionProvider = CliVersionProvider.class,
versionProvider = PicocliVersionProvider.class,
description = "Command-line client for the Dataverse API")
@Slf4j
public class DdDataverseCli extends AbstractCommandLineApp<DdDataverseCliConfig> {
Expand Down

0 comments on commit 019a73d

Please sign in to comment.