Add vks-java-cli Command Line Frontend

This commit is contained in:
Paul Schaub 2022-04-06 16:17:57 +02:00
parent 352f6d3c7f
commit 181af197b5
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
7 changed files with 313 additions and 1 deletions

32
vks-java-cli/build.gradle Normal file
View file

@ -0,0 +1,32 @@
// SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
//
// SPDX-License-Identifier: Apache-2.0
plugins {
id 'application'
}
group 'org.pgpainless'
repositories {
mavenCentral()
}
dependencies {
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
// VKS-Java
implementation project(":vks-java")
// CLI
implementation "info.picocli:picocli:4.6.3"
}
application {
mainClass = 'pgp.vks.client.cli.VKSCLI'
}
test {
useJUnitPlatform()
}