forked from trifel/Report.ixi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
38 lines (34 loc) · 1.25 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
plugins {
id 'java'
id 'idea'
}
group 'com.ictreport'
version '0.5.2'
sourceCompatibility = 1.7
repositories {
mavenCentral()
maven { url "https://jitpack.io" }
}
dependencies {
compile 'com.github.iotaledger:ict:2eca314de6cd9a3c13f28d6754b1199b654d36c6'
compile 'com.google.code.gson:gson:2.8.5'
compile group: 'org.danilopianini', name: 'gson-extras', version: '0.2.1'
compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.11.1'
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.11.1'
testCompile group: 'junit', name: 'junit', version: '4.12'
compile 'com.github.mikrohash:iota.curl.java:master'
compile group: 'commons-codec', name: 'commons-codec', version: '1.9'
testCompile group: 'junit', name: 'junit', version: '4.12'
compile 'org.apache.httpcomponents:httpcore:4.4.1'
compile 'org.apache.httpcomponents:httpclient:4.5'
compile group: 'commons-io', name: 'commons-io', version: '2.6'
}
task fatJar(type: Jar) {
manifest {
attributes 'Main-Class': 'com.ictreport.ixi.ReportIxi'
}
baseName = 'report.ixi'
destinationDir = file("$rootDir/")
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}