Rename module to external-sop and make backend in tests configurable

This commit is contained in:
Paul Schaub 2023-01-07 15:23:57 +01:00
parent 28912618ea
commit e602cc16cc
12 changed files with 80 additions and 30 deletions

27
external-sop/build.gradle Normal file
View file

@ -0,0 +1,27 @@
// SPDX-FileCopyrightText: 2021 Paul Schaub <vanitasvitae@fsfe.org>
//
// SPDX-License-Identifier: Apache-2.0
plugins {
id 'java-library'
}
group 'org.pgpainless'
repositories {
mavenCentral()
}
dependencies {
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
api project(":sop-java")
api "org.slf4j:slf4j-api:$slf4jVersion"
testImplementation "ch.qos.logback:logback-classic:$logbackVersion"
}
test {
useJUnitPlatform()
}