mirror of
https://codeberg.org/PGPainless/vks-java.git
synced 2024-11-14 12:02:05 +01:00
32 lines
No EOL
583 B
Groovy
32 lines
No EOL
583 B
Groovy
// 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()
|
|
} |