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

47 lines
1.1 KiB
Groovy
Raw Normal View History

2023-07-13 16:53:35 +02:00
// SPDX-FileCopyrightText: 2023 Paul Schaub <vanitasvitae@fsfe.org>
//
// SPDX-License-Identifier: Apache-2.0
2023-06-21 15:49:18 +02:00
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
plugins {
id 'java-library'
id 'java-test-fixtures'
2023-06-21 15:49:18 +02:00
id 'org.jetbrains.kotlin.jvm' version "$kotlinVersion"
}
group 'org.pgpainless'
repositories {
mavenCentral()
}
dependencies {
2023-06-21 15:49:18 +02:00
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
2023-06-28 16:19:48 +02:00
// kotlin.test
testImplementation "org.jetbrains.kotlin:kotlin-test-junit5:$kotlinVersion"
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
testImplementation "org.jetbrains.kotlin:kotlin-test-junit5:$kotlinVersion"
// Logging
2023-07-06 16:00:38 +02:00
api "org.slf4j:slf4j-api:$slf4jVersion"
testImplementation "ch.qos.logback:logback-classic:$logbackVersion"
// @Nullable, @Nonnull annotations
implementation "com.google.code.findbugs:jsr305:3.0.2"
}
test {
useJUnitPlatform()
}