-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathbuild.gradle
executable file
·47 lines (38 loc) · 898 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
45
46
47
plugins {
id "com.diffplug.spotless" version "5.1.0"
id 'java'
id 'application'
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
jcenter()
mavenCentral()
}
spotless {
java {
importOrder()
removeUnusedImports()
googleJavaFormat()
}
}
dependencies {
implementation 'org.jblas:jblas:1.2.5'
testCompile 'com.google.guava:guava:31.0.1-jre'
implementation 'commons-lang:commons-lang:2.6'
compileOnly 'org.projectlombok:lombok:1.18.22'
annotationProcessor 'org.projectlombok:lombok:1.18.22'
testCompile 'com.google.truth:truth:1.1.3'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
}
test {
useJUnitPlatform()
}
application {
mainClassName = '' // Change to whatever class you want to run
}