-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
35 lines (28 loc) · 887 Bytes
/
build.gradle
File metadata and controls
35 lines (28 loc) · 887 Bytes
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
import java.nio.charset.StandardCharsets
plugins {
id 'java'
id 'groovy'
}
group 'io.github.imsejin.study'
version '0.1.0'
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
// Prevents error from occurring "unmappable character for encoding MS949".
[compileJava, compileTestJava]*.options*.encoding = StandardCharsets.UTF_8
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.assertj:assertj-core:3.24.2'
testImplementation 'org.spockframework:spock-core:2.3-groovy-4.0'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.9.3'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.3'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.3'
}
test {
useJUnitPlatform()
}
wrapper {
gradleVersion = '8.1.1'
distributionType = Wrapper.DistributionType.BIN
}