-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
59 lines (49 loc) · 1.41 KB
/
build.gradle.kts
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
id("org.springframework.boot") version PluginVersions.SPRING_BOOT_FRAMEWORK_VERSION
id("io.spring.dependency-management") version PluginVersions.SPRING_DEPENDENCY_MANAGEMENT_VERSION
kotlin("jvm") version PluginVersions.JVM_VERSION
kotlin("plugin.spring") version PluginVersions.PLUGIN_SPRING_VERSION
}
group = "juyeong"
version = "0.0.1-SNAPSHOT"
java {
sourceCompatibility = JavaVersion.VERSION_17
}
repositories {
mavenCentral()
}
dependencies {
implementation(Dependencies.SECURITY)
implementation(Dependencies.VALIDATION)
implementation(Dependencies.WEB)
implementation(Dependencies.JACKSON)
implementation(Dependencies.REFLECT)
implementation(Dependencies.JDK8)
implementation(Dependencies.OAUTH2)
implementation(Dependencies.OPENFEIGN)
annotationProcessor(Dependencies.CONFIGURATION_PROCESSOR)
}
tasks.withType<KotlinCompile> {
kotlinOptions {
freeCompilerArgs += "-Xjsr305=strict"
jvmTarget = "17"
}
}
tasks.withType<Test> {
useJUnitPlatform()
}
allOpen {
annotation("javax.persistence.Entity")
annotation("javax.persistence.MappedSuperclass")
annotation("javax.persistence.Embeddable")
}
tasks.getByName<Jar>("jar") {
enabled = false
}
configurations {
create("myConfiguration") {
isCanBeResolved = true
isCanBeConsumed = false
}
}