Skip to content

Commit

Permalink
chore: 멀티모듈 build gradle 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
van1164 committed Jun 1, 2024
1 parent d264905 commit 7809960
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
21 changes: 21 additions & 0 deletions live_stream/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
plugins {
kotlin("jvm")
}

group = "com.van1164"
version = "0.0.1-SNAPSHOT"

repositories {
mavenCentral()
}

dependencies {
testImplementation("org.jetbrains.kotlin:kotlin-test")
}

tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(20)
}
31 changes: 31 additions & 0 deletions user/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import org.springframework.boot.gradle.tasks.bundling.BootJar

plugins {
kotlin("jvm")
}

group = "com.van1164"
version = "0.0.1-SNAPSHOT"


val jar: Jar by tasks
val bootJar: BootJar by tasks

bootJar.enabled = false
jar.enabled = true
repositories {
mavenCentral()
}

dependencies {
testImplementation("org.jetbrains.kotlin:kotlin-test")
implementation(project(":util"))
}

tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(20)
}
tasks.register("prepareKotlinBuildScriptModel")

0 comments on commit 7809960

Please sign in to comment.