1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-06-25 04:54:49 +02:00

Enable Kotlin code in wot-dijkstra

This commit is contained in:
Paul Schaub 2023-06-21 15:49:18 +02:00
parent ae3fedfa6b
commit cdb6c838e2
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
2 changed files with 13 additions and 0 deletions

View file

@ -11,6 +11,7 @@ allprojects {
bouncyCastleVersion = '1.75'
bouncyPgVersion = bouncyCastleVersion
junitVersion = '5.8.2'
kotlinVersion = '1.8.10'
logbackVersion = '1.2.11'
certDJavaVersion = '0.2.1'
pgpainlessCertDVersion = '0.2.1'

View file

@ -2,8 +2,18 @@
//
// 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'
@ -13,6 +23,8 @@ repositories {
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"