mirror of https://github.com/usbharu/Hideout.git
Merge pull request #530 from usbharu/use-owl-jar
OWLをビルド済みライブラリをとして読み込むように
This commit is contained in:
commit
e082b0b7b9
|
@ -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")
|
||||||
|
|
|
@ -18,5 +18,3 @@ 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
|
|
|
@ -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 {
|
||||||
|
|
Loading…
Reference in New Issue