forked from gerecoteco/gereco
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
32 lines (27 loc) · 794 Bytes
/
build.gradle
File metadata and controls
32 lines (27 loc) · 794 Bytes
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
plugins {
id 'java'
}
group 'com.tcc-grupo7'
version '2.0'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
jar {
doFirst {
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
}
manifest {
attributes 'Main-Class': 'application.Main'
}
exclude 'META-INF/*.RSA', 'META-INF/*.SF','META-INF/*.DSA'
}
dependencies {
compile 'org.mongodb:mongodb-driver-sync:3.10.1'
compile 'com.google.code.gson:gson:2.8.5'
compile 'com.jfoenix:jfoenix:8.0.8'
compile 'commons-codec:commons-codec:1.8'
compile group: 'com.itextpdf', name: 'itextpdf', version: '5.0.6'
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile group: 'org.mockito', name: 'mockito-core', version: '2.1.0'
}