-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
34 lines (27 loc) · 858 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
group 'dk.ku.cst'
version '1.0-SNAPSHOT'
apply plugin: 'java'
//sourceCompatibility = 1.5
//create a single Jar with all dependencies
task fatJar(type: Jar) {
manifest {
attributes 'Implementation-Title': 'Gradle Jar File Example',
'Implementation-Version': version,
'Main-Class': 'UsenetImporter'
}
baseName = project.name + '-all'
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
compile 'org.apache.james:apache-mime4j:0.7.2'
compile 'com.carrotsearch:langid-java:1.0.0'
compile 'commons-cli:commons-cli:1.3.1'
compile 'org.apache.commons:commons-csv:1.2'
compile 'com.baqend:bloom-filter:1.0.7'
testCompile group: 'junit', name: 'junit', version: '4.11'
}