forked from amrfaissal/Frango
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
executable file
·39 lines (32 loc) · 1.09 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
defaultTasks 'clean', 'check', 'jar'
apply plugin: 'java'
sourceCompatibility = 1.5
version = '1.0'
project.group='Frango'
jar {
manifest {
attributes 'Implementation-Title': 'Frango', 'Implementation-Version': version
}
}
repositories {
mavenCentral()
}
dependencies {
compile group: 'commons-lang', name: 'commons-lang', version: '2.6'
compile group: 'commons-logging', name: 'commons-logging', version: '1.1.1'
compile group: 'log4j', name: 'log4j', version: '1.2.17'
compile group: 'org.apache.poi', name: 'poi', version: '3.9'
compile group: 'org.apache.poi', name: 'poi-ooxml', version: '3.9'
compile group: 'org.apache.poi', name: 'poi-ooxml-schemas', version: '3.9'
compile group: 'org.apache.xmlbeans', name: 'xmlbeans', version: '2.3.0'
compile group: 'org.apache.directory.studio', name: 'org.dom4j.dom4j', version: '1.6.1'
compile group: 'stax', name: 'stax-api', version: '1.0.1'
testCompile group: 'junit', name: 'junit', version: '4.+'
}
uploadArchives {
repositories {
flatDir {
dirs 'repos'
}
}
}