-
-
Notifications
You must be signed in to change notification settings - Fork 242
/
build.gradle
131 lines (112 loc) · 3.47 KB
/
build.gradle
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/*
* Copyright 2020 Shreyas Patil
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
buildscript {
ext {
kotlinVersion = "1.9.24"
kotlinSerializerVersion = "1.5.1"
ktlintVersion = "11.6.1"
coroutinesVersion = "1.8.1"
ktorVersion = "1.6.8"
exposedVersion = "0.44.0"
postgresVersion = "42.7.4"
logbackVersion = "1.5.7"
daggerVersion = "2.47"
testContainerVersion = "1.19.1"
kotestVersion = "5.6.2"
hikariVersion = "5.0.1"
}
repositories {
mavenCentral()
google()
maven {
url("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlinVersion"
classpath "org.jlleitschuh.gradle:ktlint-gradle:$ktlintVersion"
}
}
apply plugin: 'kotlin'
apply plugin: 'jacoco'
version "0.1.0"
group "dev.shreyaspatil.noty"
repositories {
mavenCentral()
jcenter()
}
subprojects {
apply(plugin: 'org.jetbrains.kotlin.jvm')
apply(plugin: 'org.jetbrains.kotlin.kapt')
apply(plugin: 'jacoco')
apply(plugin: 'org.jlleitschuh.gradle.ktlint')
sourceCompatibility = "11"
targetCompatibility = "11"
sourceSets {
main.kotlin.srcDirs = main.java.srcDirs = ['src']
test.kotlin.srcDirs = test.java.srcDirs = ['test']
main.resources.srcDirs = ['resources']
test.resources.srcDirs = ['testresources']
}
test {
useJUnitPlatform()
jacoco {
destinationFile = file("${buildDir}/jacoco/test.exec")
}
}
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
kotlinOptions {
jvmTarget = "11"
}
}
ktlint {
debug = true
verbose = true
outputToConsole = true
outputColorName = "RED"
}
repositories {
mavenCentral()
mavenLocal()
google()
}
dependencies {
// Kotlin
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion"
// Dagger
implementation "com.google.dagger:dagger:$daggerVersion"
kapt "com.google.dagger:dagger-compiler:$daggerVersion"
// Testing
testImplementation "io.kotest:kotest-runner-junit5-jvm:$kotestVersion"
testImplementation "io.kotest:kotest-assertions-core-jvm:$kotestVersion"
testImplementation "io.kotest:kotest-property-jvm:$kotestVersion"
}
}
// Code Coverage Report (Jacoco)
task codeCoverageReport(type: JacocoReport) {
// Gather execution data from all subprojects
executionData fileTree(project.rootDir.absolutePath).include("**/build/jacoco/*.exec")
subprojects.each {
sourceSets it.sourceSets.main
}
reports {
xml.enabled true
html.enabled true
csv.enabled false
}
}