-
Notifications
You must be signed in to change notification settings - Fork 8
/
build.gradle.kts
51 lines (42 loc) · 1.21 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
plugins {
kotlin("jvm") version "1.9.10"
kotlin("plugin.serialization") version "1.9.10"
java
application
}
group = "id.walt"
// Same as SSI Kit version
version = "2.0.0"
repositories {
mavenLocal()
mavenCentral()
maven("https://jitpack.io")
maven("https://maven.walt.id/repository/waltid/")
maven("https://maven.walt.id/repository/waltid-ssi-kit/")
maven("https://repo.danubetech.com/repository/maven-public/")
}
dependencies {
// walt.id
implementation("id.walt:waltid-ssikit:1.2308302143.0")
implementation("id.walt:waltid-sd-jwt-jvm:1.2306191408.0")
implementation("id.walt.servicematrix:WaltID-ServiceMatrix:1.1.3")
// Logging
implementation("org.slf4j:slf4j-api:2.0.5")
implementation("io.github.microutils:kotlin-logging-jvm:3.0.4")
// Kotlin
implementation(kotlin("stdlib"))
// JSON
implementation("com.beust:klaxon:5.6")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.0")
}
tasks.withType<Test> {
useJUnitPlatform()
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(17))
}
}
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
kotlinOptions.jvmTarget = "17"
}