-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
63 lines (53 loc) · 1.58 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
60
61
62
63
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
kotlin("plugin.jpa") version PluginVersions.PLUGIN_JPA_VERSION
}
group = "com.example"
version = "0.0.1-SNAPSHOT"
java {
sourceCompatibility = JavaVersion.VERSION_17
}
repositories {
mavenCentral()
}
dependencies {
implementation(Dependencies.JPA)
implementation(Dependencies.SECURITY)
implementation(Dependencies.VALIDATION)
implementation(Dependencies.WEB)
implementation(Dependencies.JACKSON)
implementation(Dependencies.REFLECT)
implementation(Dependencies.JDK8)
implementation(Dependencies.JWT)
runtimeOnly(Dependencies.MYSQL)
implementation(Dependencies.REDIS)
implementation(Dependencies.CLOUD_AWS)
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
}
}