forked from Lermex/Signia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
47 lines (39 loc) · 947 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
group 'uk.ac.uel'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'com.github.johnrengelman.shadow'
mainClassName = 'uk.ac.uel.signia.Signia'
sourceCompatibility = 9
compileJava {
sourceCompatibility = 9
targetCompatibility = 9
}
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.3'
}
}
repositories {
jcenter()
mavenCentral()
}
dependencies {
compile 'com.jfoenix:jfoenix:9.0.3'
compile 'de.jensd:fontawesomefx-fontawesome:4.7.0-5'
compile 'org.tensorflow:tensorflow:1.4.0'
compile files('lib/opencv-340.jar')
compile files('natives/libopencv_java340.dylib')
compile files('natives/opencv_java340.dll')
}
shadowJar {
manifest {
attributes 'Main-Class': 'uk.ac.uel.signia.Signia'
}
baseName = 'Signia'
classifier = null
version = null
}