-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
44 lines (30 loc) · 845 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
33
34
35
36
37
38
39
40
41
42
43
44
apply plugin:'java'
group = 'cz.siret.prank'
version = '2.4.1'
description = "Fast Random Forest implementations for Weka. Streamlined version of Fans Supek's FastRandomForest."
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
mavenLocal()
}
jar {
manifest {
attributes 'Main-Class': 'cz.siret.prank.ffutils.Main'
}
}
test {
testLogging {
events "failed" // "standardOut", "standardError", "passed", "skipped"
showExceptions true
exceptionFormat "full"
showCauses true
showStackTraces true
showStandardStreams = false
}
}
dependencies {
implementation 'nz.ac.waikato.cms.weka:weka-dev:3.9.6'
implementation group: 'com.carrotsearch', name: 'hppc', version: '0.9.0'
testImplementation 'junit:junit:4.13.2'
}