-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
59 lines (42 loc) · 1.11 KB
/
build.gradle
File metadata and controls
59 lines (42 loc) · 1.11 KB
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
54
55
56
57
58
59
apply plugin:'java'
apply plugin:'maven-publish'
group = 'cz.siret.prank'
version = '2.6.0'
description = "Fast Random Forest implementations for Weka. Streamlined version of Fans Supek's FastRandomForest."
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
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
}
}
publishing {
publications {
maven(MavenPublication) {
from components.java
}
}
}
assemble.dependsOn generatePomFileForMavenPublication
dependencies {
implementation 'org.apache.commons:commons-lang3:3.18.0'
implementation 'nz.ac.waikato.cms.weka:weka-dev:3.9.6'
implementation 'com.carrotsearch:hppc:0.10.0'
testImplementation 'junit:junit:4.13.2'
}