Skip to content

Commit

Permalink
Updated plugins and dependencies in waltid-identity
Browse files Browse the repository at this point in the history
  • Loading branch information
waltkb committed Nov 2, 2023
1 parent 876d6f4 commit 221d09f
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ allprojects {
}

plugins {
val kotlinVersion = "1.9.10"
val kotlinVersion = "1.9.20"
kotlin("multiplatform") version kotlinVersion apply false
kotlin("plugin.serialization") version kotlinVersion apply false
id("com.github.ben-manes.versions") version "0.48.0" apply false
kotlin("jvm") version "1.9.20-RC"
kotlin("jvm") version "1.9.20"
}
dependencies {
implementation(kotlin("stdlib-jdk8"))
Expand All @@ -22,4 +22,4 @@ repositories {
}
kotlin {
jvmToolchain(8)
}
}
4 changes: 2 additions & 2 deletions waltid-issuer/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ plugins {
id("org.jetbrains.kotlin.plugin.serialization") // Versions.KOTLIN_VERSION

id("io.ktor.plugin") version "2.3.5" // Versions.KTOR_VERSION
id("org.owasp.dependencycheck") version "8.4.0"
id("org.owasp.dependencycheck") version "8.4.2"
id("com.github.jk1.dependency-license-report") version "2.5"
application
`maven-publish`
Expand Down Expand Up @@ -63,7 +63,7 @@ dependencies {
implementation("io.ktor:ktor-server-cio-jvm:${Versions.KTOR_VERSION}")

// Ktor server external libs
implementation("io.github.smiley4:ktor-swagger-ui:2.5.0")
implementation("io.github.smiley4:ktor-swagger-ui:2.6.0")

// Ktor client
implementation("io.ktor:ktor-client-core-jvm:${Versions.KTOR_VERSION}")
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package id.walt.issuer.base.web.plugins

import io.github.smiley4.ktorswaggerui.SwaggerUI
import io.github.smiley4.ktorswaggerui.dsl.AuthKeyLocation
import io.github.smiley4.ktorswaggerui.dsl.AuthType
import io.github.smiley4.ktorswaggerui.data.AuthKeyLocation
import io.github.smiley4.ktorswaggerui.data.AuthType
import io.ktor.server.application.*

fun Application.configureOpenApi() {
Expand Down
4 changes: 2 additions & 2 deletions waltid-verifier/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ plugins {
id("org.jetbrains.kotlin.plugin.serialization") // Versions.KOTLIN_VERSION

id("io.ktor.plugin") version "2.3.5" // Versions.KTOR_VERSION
id("org.owasp.dependencycheck") version "8.4.0"
id("org.owasp.dependencycheck") version "8.4.2"
id("com.github.jk1.dependency-license-report") version "2.5"
application
`maven-publish`
Expand Down Expand Up @@ -63,7 +63,7 @@ dependencies {
implementation("io.ktor:ktor-server-cio-jvm:${Versions.KTOR_VERSION}")

// Ktor server external libs
implementation("io.github.smiley4:ktor-swagger-ui:2.5.0")
implementation("io.github.smiley4:ktor-swagger-ui:2.6.0")

// Ktor client
implementation("io.ktor:ktor-client-core-jvm:${Versions.KTOR_VERSION}")
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package id.walt.verifier.base.web.plugins

import io.github.smiley4.ktorswaggerui.SwaggerUI
import io.github.smiley4.ktorswaggerui.dsl.AuthKeyLocation
import io.github.smiley4.ktorswaggerui.dsl.AuthType
import io.github.smiley4.ktorswaggerui.data.AuthKeyLocation
import io.github.smiley4.ktorswaggerui.data.AuthType
import io.ktor.server.application.*

fun Application.configureOpenApi() {
Expand Down

0 comments on commit 221d09f

Please sign in to comment.