9ee4e61a1e
Bumps [picocli](https://github.com/remkop/picocli) from 4.5.1 to 4.5.2. - [Release notes](https://github.com/remkop/picocli/releases) - [Changelog](https://github.com/remkop/picocli/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/remkop/picocli/compare/v4.5.1...v4.5.2) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
47 lines
1.3 KiB
XML
47 lines
1.3 KiB
XML
<project xmlns="http://maven.apache.org/POM/4.0.0">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>net.kemitix.thorp</groupId>
|
|
<artifactId>thorp-parent</artifactId>
|
|
<version>2.0.0</version>
|
|
<relativePath>../parent/pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>thorp-cli</artifactId>
|
|
<name>cli</name>
|
|
|
|
<dependencies>
|
|
<!-- picocli -->
|
|
<dependency>
|
|
<groupId>info.picocli</groupId>
|
|
<artifactId>picocli</artifactId>
|
|
<version>4.5.2</version>
|
|
</dependency>
|
|
|
|
<!-- lombok -->
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<!-- thorp -->
|
|
<dependency>
|
|
<groupId>net.kemitix.thorp</groupId>
|
|
<artifactId>thorp-config</artifactId>
|
|
</dependency>
|
|
|
|
<!-- testing -->
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.assertj</groupId>
|
|
<artifactId>assertj-core</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|