-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathbuild.gradle
68 lines (53 loc) · 1.89 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'groovy'
apply plugin: 'idea'
mainClassName = 'com.skocur.imagecipher.Main'
jar {
manifest {
attributes(
'Class-Path': configurations.compile.collect { it.getName() }.join(' '),
'Main-Class': 'com.skocur.imagecipher.Main',
'Build-Time': new Date().format("yyyy.MM.dd")
)
}
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
}
sourceSets {
main {
java {
srcDirs 'build/classes/'
}
}
}
dependencies {
implementation 'org.jetbrains:annotations:16.0.2'
implementation group: 'com.beust', name: 'jcommander', version: '1.69'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.0.1'
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.9.8'
implementation 'org.kordamp.bootstrapfx:bootstrapfx-core:0.2.4'
implementation 'com.jfoenix:jfoenix:8.0.8'
implementation "io.reactivex.rxjava3:rxjava:3.0.1"
implementation 'com.google.dagger:dagger:2.27'
annotationProcessor 'com.google.dagger:dagger-compiler:2.27'
implementation 'com.squareup.retrofit2:retrofit:2.8.0'
implementation 'com.squareup.retrofit2:converter-gson:2.1.0'
implementation 'org.apache.logging.log4j:log4j-api:2.11.1'
implementation 'org.apache.logging.log4j:log4j-core:2.11.1'
implementation 'org.apache.logging.log4j:log4j-slf4j-impl:2.11.1'
implementation 'com.jcabi:jcabi-manifests:1.1'
implementation files("libs/IcSdk-0.1.jar")
testCompile(
'junit:junit:4.12',
'org.codehaus.groovy:groovy-all:2.4.4',
'org.spockframework:spock-core:1.0-groovy-2.4',
'org.mockito:mockito-all:1.10.19'
)
}
repositories {
mavenCentral()
jcenter()
maven { url 'https://jitpack.io' }
}