mirror of https://github.com/usbharu/Hideout.git
Merge branch 'develop' into auth2
This commit is contained in:
commit
cf71c17464
|
@ -1,6 +1,6 @@
|
|||
[versions]
|
||||
|
||||
kotlin = "2.0.0"
|
||||
kotlin = "2.0.10"
|
||||
ktor = "2.3.12"
|
||||
exposed = "0.53.0"
|
||||
javacv-ffmpeg = "6.1.1-1.5.10"
|
||||
|
@ -69,7 +69,7 @@ jackson-module-kotlin = { module = "com.fasterxml.jackson.module:jackson-module-
|
|||
|
||||
blurhash = { module = "io.trbl:blurhash", version = "1.0.0" }
|
||||
|
||||
aws-s3 = { module = "software.amazon.awssdk:s3", version = "2.26.29" }
|
||||
aws-s3 = { module = "software.amazon.awssdk:s3", version = "2.27.0" }
|
||||
|
||||
jsoup = { module = "org.jsoup:jsoup", version = "1.18.1" }
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ subprojects {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
implementation("org.slf4j:slf4j-api:2.0.13")
|
||||
implementation("org.slf4j:slf4j-api:2.0.14")
|
||||
testImplementation("org.junit.jupiter:junit-jupiter:5.10.3")
|
||||
|
||||
|
||||
|
|
|
@ -13,9 +13,9 @@ repositories {
|
|||
|
||||
dependencies {
|
||||
implementation("io.grpc:grpc-kotlin-stub:1.4.1")
|
||||
implementation("io.grpc:grpc-protobuf:1.65.1")
|
||||
implementation("io.grpc:grpc-protobuf:1.66.0")
|
||||
implementation("com.google.protobuf:protobuf-kotlin:4.27.3")
|
||||
implementation("io.grpc:grpc-netty:1.65.1")
|
||||
implementation("io.grpc:grpc-netty:1.66.0")
|
||||
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.1")
|
||||
implementation(project(":owl-common"))
|
||||
implementation("org.apache.logging.log4j:log4j-slf4j2-impl:2.23.1")
|
||||
|
@ -36,7 +36,7 @@ protobuf {
|
|||
}
|
||||
plugins {
|
||||
create("grpc") {
|
||||
artifact = "io.grpc:protoc-gen-grpc-java:1.65.1"
|
||||
artifact = "io.grpc:protoc-gen-grpc-java:1.66.0"
|
||||
}
|
||||
create("grpckt") {
|
||||
artifact = "io.grpc:protoc-gen-grpc-kotlin:1.4.1:jdk8@jar"
|
||||
|
|
|
@ -11,7 +11,7 @@ repositories {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
implementation("org.mongodb:mongodb-driver-kotlin-coroutine:5.1.2")
|
||||
implementation("org.mongodb:mongodb-driver-kotlin-coroutine:5.1.3")
|
||||
implementation(project(":owl-broker"))
|
||||
implementation(project(":owl-common"))
|
||||
implementation(platform("io.insert-koin:koin-bom:3.5.6"))
|
||||
|
|
|
@ -13,9 +13,9 @@ repositories {
|
|||
dependencies {
|
||||
testImplementation("org.jetbrains.kotlin:kotlin-test")
|
||||
implementation("io.grpc:grpc-kotlin-stub:1.4.1")
|
||||
implementation("io.grpc:grpc-protobuf:1.65.1")
|
||||
implementation("io.grpc:grpc-protobuf:1.66.0")
|
||||
implementation("com.google.protobuf:protobuf-kotlin:4.27.3")
|
||||
implementation("io.grpc:grpc-netty:1.65.1")
|
||||
implementation("io.grpc:grpc-netty:1.66.0")
|
||||
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.1")
|
||||
implementation(project(":owl-common"))
|
||||
protobuf(files(project(":owl-broker").dependencyProject.projectDir.toString() + "/src/main/proto"))
|
||||
|
@ -34,7 +34,7 @@ protobuf {
|
|||
}
|
||||
plugins {
|
||||
create("grpc") {
|
||||
artifact = "io.grpc:protoc-gen-grpc-java:1.65.1"
|
||||
artifact = "io.grpc:protoc-gen-grpc-java:1.66.0"
|
||||
}
|
||||
create("grpckt") {
|
||||
artifact = "io.grpc:protoc-gen-grpc-kotlin:1.4.1:jdk8@jar"
|
||||
|
|
|
@ -14,9 +14,9 @@ dependencies {
|
|||
testImplementation("org.jetbrains.kotlin:kotlin-test")
|
||||
api(project(":owl-producer:owl-producer-api"))
|
||||
implementation("io.grpc:grpc-kotlin-stub:1.4.1")
|
||||
implementation("io.grpc:grpc-protobuf:1.65.1")
|
||||
implementation("io.grpc:grpc-protobuf:1.66.0")
|
||||
implementation("com.google.protobuf:protobuf-kotlin:4.27.3")
|
||||
implementation("io.grpc:grpc-netty:1.65.1")
|
||||
implementation("io.grpc:grpc-netty:1.66.0")
|
||||
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.1")
|
||||
implementation(project(":owl-common"))
|
||||
protobuf(files(project(":owl-broker").dependencyProject.projectDir.toString() + "/src/main/proto"))
|
||||
|
@ -35,7 +35,7 @@ protobuf {
|
|||
}
|
||||
plugins {
|
||||
create("grpc") {
|
||||
artifact = "io.grpc:protoc-gen-grpc-java:1.65.1"
|
||||
artifact = "io.grpc:protoc-gen-grpc-java:1.66.0"
|
||||
}
|
||||
create("grpckt") {
|
||||
artifact = "io.grpc:protoc-gen-grpc-kotlin:1.4.1:jdk8@jar"
|
||||
|
|
Loading…
Reference in New Issue