-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
32 lines (27 loc) · 814 Bytes
/
build.gradle
File metadata and controls
32 lines (27 loc) · 814 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
plugins {
id "java"
id "idea"
id "org.jetbrains.kotlin.jvm" version "1.7.10"
id "org.jetbrains.kotlin.plugin.spring" version "1.7.10"
id "org.springframework.boot" version "2.7.0"
id "io.spring.dependency-management" version "1.0.11.RELEASE"
}
idea {
module {
downloadJavadoc = true
downloadSources = true
}
}
repositories {
mavenCentral()
}
[compileKotlin, compileTestKotlin]*.kotlinOptions*.jvmTarget = "11"
dependencies {
implementation "org.springframework.boot:spring-boot-starter-web"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation "org.jetbrains.kotlin:kotlin-reflect"
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor"
}
bootJar {
archiveFileName = "${project.name}.jar"
}