2022-04-06 16:17:57 +02:00
|
|
|
// SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
id 'application'
|
|
|
|
}
|
|
|
|
|
|
|
|
group 'org.pgpainless'
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2022-04-26 01:03:43 +02:00
|
|
|
// JUnit
|
2022-04-06 16:17:57 +02:00
|
|
|
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
|
|
|
|
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
|
|
|
|
|
|
|
|
// VKS-Java
|
|
|
|
implementation project(":vks-java")
|
|
|
|
|
|
|
|
// CLI
|
2022-04-26 01:08:04 +02:00
|
|
|
implementation "info.picocli:picocli:$picocliVersion"
|
2022-04-06 16:17:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
application {
|
|
|
|
mainClass = 'pgp.vks.client.cli.VKSCLI'
|
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|