-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
85 lines (79 loc) · 2.66 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
id("org.springframework.boot") version "3.1.2"
id("io.spring.dependency-management") version "1.1.3"
id("io.gitlab.arturbosch.detekt").version("1.23.1") // This is to add detekt
id("jacoco")// Add Jacoco
kotlin("jvm") version "1.9.0"
kotlin("plugin.spring") version "1.9.0"
}
group = "com.hrv.mart"
version = "0.0.1-SNAPSHOT"
java.sourceCompatibility = JavaVersion.VERSION_17
repositories {
mavenCentral()
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/hrv-mart/custom-pageable")
credentials {
username = project.findProperty("gpr.user") as String? ?: System.getenv("USERNAME")
password = project.findProperty("gpr.key") as String? ?: System.getenv("TOKEN")
}
}
}
dependencies {
implementation("org.springframework.boot:spring-boot-starter-data-mongodb-reactive")
implementation("org.springframework.boot:spring-boot-starter-webflux")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
implementation("io.projectreactor.kotlin:reactor-kotlin-extensions")
implementation("org.jetbrains.kotlin:kotlin-reflect")
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-reactor")
detektPlugins ("io.gitlab.arturbosch.detekt:detekt-formatting:1.23.1")
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("io.projectreactor:reactor-test")
// User Model
implementation("com.hrv.mart:user-library:0.0.3")
// Auth Library
implementation("com.hrv.mart:auth-library:0.0.3")
// Kafka
implementation("org.springframework.kafka:spring-kafka")
testImplementation("org.springframework.kafka:spring-kafka-test")
implementation("io.projectreactor.kafka:reactor-kafka")
// Appwrite
implementation("io.appwrite:sdk-for-kotlin:2.0.0")
}
detekt {
toolVersion = "1.23.1"
config = files("config/detekt/detekt.yml")
}
tasks.withType<KotlinCompile> {
kotlinOptions {
freeCompilerArgs = listOf("-Xjsr305=strict")
jvmTarget = "17"
}
}
tasks.withType<Test> {
useJUnitPlatform()
finalizedBy("jacocoTestCoverageVerification")
}
/*
* Jacoco configs*/
tasks.jacocoTestCoverageVerification {
violationRules {
rule {
// enabled=true
// element="CLASS"
// excludes= listOf("**/*Repository.kt")
// limit {
// minimum = "0.9".toBigDecimal()
// }
}
}
}
tasks.jacocoTestReport{
reports {
html.required.set(true)
generate()
}
}