forked from TongjiSSERollMan/Design_Pattern_2020
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
43 lines (33 loc) · 910 Bytes
/
build.gradle
File metadata and controls
43 lines (33 loc) · 910 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
36
37
38
39
40
41
42
/*
* This file was generated by the Gradle 'init' task.
*
* This is a general purpose Gradle build.
* Learn more about Gradle by exploring our samples at https://docs.gradle.org/6.7/samples
*/
plugins {
id "java"
id "application"
}
java {
toolchain{
languageVersion = JavaLanguageVersion.of(15)
}
}
application {
mainClass = "com.github.tongjisserollman.iceamusementpark.Main"
applicationDefaultJvmArgs = ['-Dfile.encoding=UTF-8']
}
[javadoc, compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
test {
useJUnitPlatform()
}
repositories {
maven { url 'https://maven.aliyun.com/repository/google/' }
maven { url 'https://maven.aliyun.com/repository/jcenter/'}
jcenter()
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
}