-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
34 lines (26 loc) · 897 Bytes
/
build.gradle
File metadata and controls
34 lines (26 loc) · 897 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
33
34
apply plugin: 'java'
apply plugin: 'application'
group 'be.howest.photoweave'
version '0.9.3'
mainClassName = 'be.howest.photoweave.Application'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile 'com.jfoenix:jfoenix:1.9.0'
compile 'commons-io:commons-io:2.6'
compile 'com.google.code.gson:gson:2.8.1'
compile group: 'commons-beanutils', name: 'commons-beanutils', version: '1.9.3'
compile group: 'org.apache.commons', name: 'commons-configuration2', version: '2.2'
testCompile group: 'net.jodah', name: 'concurrentunit', version: '0.4.3'
testCompile group: 'junit', name: 'junit', version: '4.12'
}
jar {
manifest {
attributes 'Main-Class': 'be.howest.photoweave.Application'
}
from {
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
}
}