mirror of
https://codeberg.org/PGPainless/vks-java.git
synced 2025-09-09 11:19:40 +02:00
Add vks-java-cli Command Line Frontend
This commit is contained in:
parent
352f6d3c7f
commit
181af197b5
7 changed files with 313 additions and 1 deletions
32
vks-java-cli/build.gradle
Normal file
32
vks-java-cli/build.gradle
Normal 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()
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue