mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-10 14:35:59 +01:00
Enable Kotlin code in wot-dijkstra
This commit is contained in:
parent
8afad6cea8
commit
a19b7693e2
2 changed files with 13 additions and 0 deletions
|
@ -11,6 +11,7 @@ allprojects {
|
|||
bouncyCastleVersion = '1.74'
|
||||
bouncyPgVersion = bouncyCastleVersion
|
||||
junitVersion = '5.8.2'
|
||||
kotlinVersion = '1.8.10'
|
||||
logbackVersion = '1.2.11'
|
||||
certDJavaVersion = '0.2.1'
|
||||
pgpainlessCertDVersion = '0.2.1'
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
Loading…
Reference in a new issue