-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
33 lines (28 loc) · 933 Bytes
/
build.gradle
File metadata and controls
33 lines (28 loc) · 933 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
plugins {
id "org.jetbrains.kotlin.jvm" version "${jetbrainKotlinVersion}"
id "org.jetbrains.kotlin.plugin.spring" version "${jetbrainKotlinVersion}"
id 'org.jetbrains.kotlin.plugin.jpa' version "${jetbrainKotlinVersion}"
id "org.springframework.boot" version "${springbootVersion}"
id "io.spring.dependency-management" version "${springDependencyManagementVersion}"
}
group = "${group}"
version = "${version}"
java {
toolchain {
languageVersion = JavaLanguageVersion.of(jvmTarget)
}
}
repositories {
mavenCentral()
}
allOpen {
annotation("jakarta.persistence.Entity")
annotation("jakarta.persistence.MappedSuperclass")
annotation("jakarta.persistence.Embeddable")
}
apply from: "gradle/core.gradle"
apply from: "gradle/db.gradle"
apply from: "gradle/jetbrains.gradle"
apply from: "gradle/monitor.gradle"
apply from: "gradle/spring.gradle"
apply from: "gradle/test.gradle"