mirror of
https://codeberg.org/PGPainless/sop-java.git
synced 2024-12-22 04:57:56 +01:00
24 lines
581 B
Groovy
24 lines
581 B
Groovy
// SPDX-FileCopyrightText: 2024 Paul Schaub <vanitasvitae@fsfe.org>
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
group 'org.pgpainless'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":sop-java"))
|
|
implementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
|
|
implementation "org.junit.jupiter:junit-jupiter-params:$junitVersion"
|
|
runtimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
|
|
|
|
// @Nullable, @Nonnull annotations
|
|
implementation "com.google.code.findbugs:jsr305:3.0.2"
|
|
|
|
}
|