-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle.kts
100 lines (96 loc) · 3.11 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
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"
kotlin("jvm") version "1.9.0"
kotlin("plugin.spring") version "1.9.0"
`maven-publish`
// Detekt and Jacoco
id("io.gitlab.arturbosch.detekt").version("1.23.1") // This is to add detekt
id("jacoco")// This is to use Jacoco for coverage testing
}
group = "com.hrv.mart"
version = System.getenv("VERSION")
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")
}
}
}
publishing {
repositories {
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/hrv-mart/product")
credentials {
username = project.findProperty("gpr.user") as String? ?: System.getenv("USERNAME")
password = project.findProperty("gpr.key") as String? ?: System.getenv("TOKEN")
}
}
}
publications {
register<MavenPublication>("gpr") {
from(components["java"])
}
}
}
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.kotlinx:kotlinx-coroutines-reactor")
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("io.projectreactor:reactor-test")
// Detekt
detektPlugins ("io.gitlab.arturbosch.detekt:detekt-formatting:1.23.1")
// HRV-Mart dependency
implementation("com.hrv.mart:api-call:0.0.3")
implementation("com.hrv.mart:custom-pageable:0.0.2")
}
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()
// To run Jacoco Test Coverage Verification
finalizedBy("jacocoTestCoverageVerification")
}
tasks.jacocoTestCoverageVerification {
violationRules {
// rule {
// excludes = listOf(
// "com.hrv.mart.product.repository.ProductRepository.kt"
// )
// limit {
// minimum = "0.9".toBigDecimal()
// }
// }
}
}
tasks.jacocoTestReport{
reports {
html.required.set(true)
generate()
}
}
tasks.withType<KotlinCompile> {
kotlinOptions {
freeCompilerArgs = listOf("-Xjsr305=strict")
jvmTarget = "17"
}
}