1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-06-30 23:36:44 +02:00
pgpainless/pgpainless-wot/build.gradle

52 lines
1.4 KiB
Groovy
Raw Normal View History

// SPDX-FileCopyrightText: 2021 Paul Schaub <vanitasvitae@fsfe.org>
//
// SPDX-License-Identifier: Apache-2.0
2023-06-29 17:49:12 +02:00
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
plugins {
id 'java-library'
id 'java-test-fixtures'
2023-06-29 17:49:12 +02:00
id 'org.jetbrains.kotlin.jvm' version "$kotlinVersion"
}
group 'org.pgpainless'
repositories {
mavenCentral()
}
dependencies {
2023-06-29 17:49:12 +02:00
// Kotlin
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
// JUnit
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
testImplementation "org.junit.jupiter:junit-jupiter-params:$junitVersion"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
testFixturesImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
testFixturesImplementation "org.junit.jupiter:junit-jupiter-params:$junitVersion"
testFixturesRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
// Logging
testImplementation "ch.qos.logback:logback-classic:$logbackVersion"
implementation(project(":pgpainless-core"))
2023-06-29 17:49:12 +02:00
api(project(":wot-dijkstra"))
// Certificate store
api "org.pgpainless:pgp-certificate-store:$certDJavaVersion"
2023-06-19 10:58:04 +02:00
api "org.pgpainless:pgpainless-cert-d:$pgpainlessCertDVersion"
}
test {
useJUnitPlatform()
}