-
Notifications
You must be signed in to change notification settings - Fork 25
/
build.gradle
48 lines (40 loc) · 1.41 KB
/
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
48
plugins {
id 'java'
}
group 'skunkworks-parrot'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
implementation fileTree(dir: 'dependencies', include: ['*.jar'])
testCompile group: 'junit', name: 'junit', version: '4.12'
implementation 'com.google.firebase:firebase-admin:6.1.0'
implementation "org.slf4j:slf4j-api:1.6.1"
implementation "org.slf4j:slf4j-simple:1.6.1"
implementation 'org.knowm:sundial:2.1.1'
testCompile "org.testfx:testfx-core:4.0.13-alpha"
testCompile "org.testfx:testfx-junit:4.0.13-alpha"
compile group: 'org.apache.wink', name: 'wink-json4j', version: '1.1.2-incubating'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.9.6'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.6'
compile 'org.apache.httpcomponents:httpclient:4.5.5'
compile "org.apache.httpcomponents:httpcore:4.2.4"
compile "org.apache.httpcomponents:httpmime:4.3"
compile 'com.google.zxing:core:3.2.1'
implementation group: 'org.xerial', name: 'sqlite-jdbc', version: '3.27.2.1'
implementation 'org.apache.commons:commons-lang3:3.6'
}
jar {
manifest {
attributes "Main-Class": "Launch"
}
from {
configurations.runtimeClasspath.files.collect { it.isDirectory() ? it : zipTree(it) }
}
}
test {
useJUnit()
maxHeapSize = '1G'
}