-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
32 lines (27 loc) · 953 Bytes
/
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
plugins {
id 'java'
}
group 'org.ryuu'
version '1.1.1'
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
repositories {
mavenCentral()
}
dependencies {
// https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.3'
// https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-engine
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.3'
// https://mvnrepository.com/artifact/org.openjdk.jol/jol-core
testImplementation 'org.openjdk.jol:jol-core:0.17'
// https://mvnrepository.com/artifact/org.openjdk.jmh/jmh-core
testImplementation 'org.openjdk.jmh:jmh-core:1.36'
// https://mvnrepository.com/artifact/org.openjdk.jmh/jmh-generator-annprocess
testAnnotationProcessor 'org.openjdk.jmh:jmh-generator-annprocess:1.36'
}
test {
useJUnitPlatform()
}