Merge pull request #530 from usbharu/use-owl-jar

OWLをビルド済みライブラリをとして読み込むように
This commit is contained in:
usbharu 2024-08-10 19:48:32 +09:00 committed by GitHub
commit e082b0b7b9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 9 additions and 7 deletions

View File

@ -81,8 +81,8 @@ dependencies {
implementation(libs.bundles.ktor.client) implementation(libs.bundles.ktor.client)
implementation(libs.bundles.apache.tika) implementation(libs.bundles.apache.tika)
implementation(libs.bundles.openapi) implementation(libs.bundles.openapi)
// implementation(libs.bundles.owl.producer) implementation(libs.bundles.owl.producer)
// implementation(libs.bundles.owl.broker) implementation(libs.bundles.owl.broker)
implementation(libs.bundles.spring.boot.oauth2) implementation(libs.bundles.spring.boot.oauth2)
implementation(libs.bundles.spring.boot.data.mongodb) implementation(libs.bundles.spring.boot.data.mongodb)
implementation("org.springframework.boot:spring-boot-starter-actuator") implementation("org.springframework.boot:spring-boot-starter-actuator")
@ -103,7 +103,7 @@ dependencies {
implementation(libs.flyway.core) implementation(libs.flyway.core)
runtimeOnly(libs.flyway.postgresql) runtimeOnly(libs.flyway.postgresql)
// implementation("dev.usbharu:owl-common-serialize-jackson:0.0.1") implementation("dev.usbharu:owl-common-serialize-jackson:0.0.1")
implementation(libs.javacv) { implementation(libs.javacv) {
exclude(module = "opencv") exclude(module = "opencv")

View File

@ -17,6 +17,4 @@ kotlin.code.style=official
org.gradle.parallel=true org.gradle.parallel=true
org.gradle.configureondemand=true org.gradle.configureondemand=true
org.gradle.caching=true org.gradle.caching=true
org.gradle.jvmargs=-Xmx4096m -XX:+HeapDumpOnOutOfMemoryError -XX:+UseParallelGC org.gradle.jvmargs=-Xmx4096m -XX:+HeapDumpOnOutOfMemoryError -XX:+UseParallelGC
org.gradle.configuration-cache=true
org.gradle.configuration-cache.problems=warn

View File

@ -3,11 +3,15 @@ plugins {
} }
rootProject.name = "hideout-core" rootProject.name = "hideout-core"
includeBuild("../owl") //ローカルで変更した時、リリースまではアンコメント リリース後はコメントアウト
//includeBuild("../owl")
dependencyResolutionManagement { dependencyResolutionManagement {
repositories { repositories {
mavenCentral() mavenCentral()
maven {
url = uri("https://git.usbharu.dev/api/packages/usbharu/maven")
}
} }
versionCatalogs { versionCatalogs {