mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-05 03:55:58 +01:00
Paul Schaub
c213760e6c
This is done in an attempt to minimize the number of BC/PGPainless dependencies in wot-dijkstra
43 lines
984 B
Groovy
43 lines
984 B
Groovy
// SPDX-FileCopyrightText: 2021 Paul Schaub <vanitasvitae@fsfe.org>
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'java-library'
|
|
id 'org.jetbrains.kotlin.jvm' version "$kotlinVersion"
|
|
}
|
|
|
|
group 'org.pgpainless'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
|
|
|
|
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
|
|
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
|
|
|
|
// Logging
|
|
testImplementation "ch.qos.logback:logback-classic:$logbackVersion"
|
|
|
|
// @Nullable, @Nonnull annotations
|
|
implementation "com.google.code.findbugs:jsr305:3.0.2"
|
|
|
|
// OpenPgpFingerprint, RevocationState
|
|
implementation(project(":pgpainless-core"))
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|