blob: 929f1c2216daa8a5ced4525ea686a6417e388e58 (
plain)
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
|
plugins {
id "java"
id "application"
id "jacoco"
}
java {
sourceCompatibility = JavaVersion.VERSION_11
}
mainClassName = "sevenUnitsGUI.Main"
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
}
jar {
manifest {
attributes 'Main-Class': mainClassName
}
}
test {
useJUnitPlatform()
testLogging {
events 'passed', 'skipped', 'failed'
}
finalizedBy jacocoTestReport
}
jacoco {
toolVersion = "0.8.6"
}
jacocoTestReport {
dependsOn test
}
javadoc {
destinationDir = file("${buildDir}/docs/javadoc")
// https://gist.github.com/claudioaltamura/aba1f6506a53b9f5499fd507abd572df
(options as StandardJavadocDocletOptions)
.tags("apiNote:a:API Note:", "implSpec:a:Implementation Requirements:", "implNote:a:Implementation Note:")
}
run {
}
|