-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
52 lines (42 loc) · 1.75 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
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
plugins {
id("org.springframework.boot") version "2.6.2"
kotlin("jvm") version "1.5.10"
kotlin("plugin.spring") version "1.6.10"
}
//baseName = "home-page-api"
group = "com.projects"
version = "1.0.0"
repositories {
mavenCentral()
}
dependencies {
compileOnly("com.h2database:h2:1.4.200")
runtimeOnly("com.h2database:h2:1.4.200")
implementation("javax.xml.bind:jaxb-api:2.3.1")
implementation("org.glassfish.jaxb:jaxb-runtime:2.3.1")
implementation("javax.activation:activation:1.1.1")
implementation(platform("org.jetbrains.kotlin:kotlin-bom:1.6.10"))
implementation("org.jetbrains.kotlin:kotlin-reflect:1.6.10")
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.10")
implementation("org.jsoup:jsoup:1.14.3")
implementation("org.springframework.boot:spring-boot-starter-actuator:2.6.2")
implementation("org.springframework.boot:spring-boot-starter-web:2.6.2")
implementation("org.springframework.boot:spring-boot-starter-cache:2.6.2")
implementation("org.springframework.boot:spring-boot-starter-data-jpa:2.6.2")
implementation("org.eclipse.jgit:org.eclipse.jgit:6.6.0.202305301015-r")
testImplementation(kotlin("test"))
testImplementation("org.springframework.boot:spring-boot-starter-test:2.6.2") {
exclude(group = "org.junit.vintage", module = "junit-vintage-engine")
}
testImplementation("org.mockito:mockito-core:4.8.0")
testImplementation("org.mockito.kotlin:mockito-kotlin:4.0.0")
testImplementation("org.junit.jupiter:junit-jupiter-params:5.8.2")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.6.0")
}
tasks.test {
useJUnit()
}