13 lines
270 B
Plaintext
13 lines
270 B
Plaintext
|
|
plugins {
|
||
|
|
kotlin("jvm")
|
||
|
|
kotlin("plugin.spring")
|
||
|
|
kotlin("plugin.jpa")
|
||
|
|
id("io.spring.dependency-management")
|
||
|
|
id("java-library")
|
||
|
|
}
|
||
|
|
|
||
|
|
dependencies {
|
||
|
|
api(project(":common"))
|
||
|
|
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
|
||
|
|
}
|