forked from ozean12/pairing-exercise
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
62 lines (50 loc) · 1.78 KB
/
build.gradle.kts
File metadata and controls
62 lines (50 loc) · 1.78 KB
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
import java.io.File
import java.io.FileInputStream
import java.util.*
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
id("org.flywaydb.flyway") version "9.3.1"
id("org.springframework.boot") version "2.7.3"
id("io.spring.dependency-management") version "1.0.14.RELEASE"
kotlin("jvm") version "1.5.0"
kotlin("plugin.spring") version "1.5.0"
application
distribution
}
group = "io.billie"
version = "0.0.1"
java.sourceCompatibility = JavaVersion.VERSION_11
val dbConf = Properties().apply {
load(FileInputStream(File(rootProject.rootDir, "database.env")))
}
repositories {
mavenCentral()
}
dependencies {
implementation("org.springframework.boot:spring-boot-starter-validation")
implementation("org.springframework.boot:spring-boot-starter-data-jdbc")
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("org.springdoc:springdoc-openapi-data-rest:1.6.11")
implementation("org.springdoc:springdoc-openapi-ui:1.6.11")
implementation("org.springdoc:springdoc-openapi-kotlin:1.6.11")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
implementation("org.jetbrains.kotlin:kotlin-reflect")
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
runtimeOnly("org.postgresql:postgresql")
testImplementation("org.springframework.boot:spring-boot-starter-test")
}
flyway {
url = dbConf.getProperty("DATABASE_URL")
user = dbConf.getProperty("POSTGRES_USER")
password = dbConf.getProperty("POSTGRES_PASSWORD")
locations = arrayOf(dbConf.getProperty("DATABASE_MIGRATION"))
}
tasks.withType<KotlinCompile> {
kotlinOptions {
freeCompilerArgs = listOf("-Xjsr305=strict")
jvmTarget = "11"
}
}
tasks.withType<Test> {
useJUnitPlatform()
}