-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle
45 lines (26 loc) · 950 Bytes
/
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
group 'com.emeraldElves.alcohollabelproject'
version '0.1'
apply plugin: 'java'
apply plugin: 'application'
mainClassName = "com.emeraldElves.alcohollabelproject.UserInterface.Main"
sourceCompatibility = 1.8
task makeJar(type: Jar) {
manifest {
attributes 'Implementation-Title': "AlcoholProject",
'Implementation-Version': version,
'Main-Class': mainClassName
}
baseName = project.name + '-all'
from { configurations.runtime.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}
repositories {
mavenCentral()
}
dependencies {
compile 'org.apache.commons:commons-lang3:3.1'
compile fileTree(dir: 'libs', include: '*.jar')
compile 'org.apache.derby:derby:10.11.1.1', 'org.apache.commons:commons-lang3:3.5', 'org.controlsfx:controlsfx:8.40.12'
compile 'commons-io:commons-io:2.4'
testCompile group: 'junit', name: 'junit', version: '4.11'
}