-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
executable file
·52 lines (44 loc) · 1.11 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
buildscript {
apply from: "$rootDir/dependencies.gradle"
repositories {
mavenCentral()
}
dependencies {
classpath gradlePlugins.kotlin
}
}
allprojects {
defaultTasks 'clean', 'build', 'jacocoTestReport'
}
subprojects {
apply from: "$rootDir/dependencies.gradle"
apply plugin: 'kotlin'
apply plugin: 'jacoco'
group = 'org.suggs.aoc'
repositories {
mavenCentral()
}
dependencies {
implementation libs.kotlin,
libs.kotlinReflect,
libs.slf4j
}
ext {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
testing {
suites {
test {
useJUnitJupiter(junitVersion)
dependencies {
implementation libs.test.junitApi
implementation libs.test.kotestAssertions
implementation libs.test.mockito
runtimeOnly libs.test.junitEngine
runtimeOnly libs.logback
}
}
}
}
}