-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
executable file
·34 lines (26 loc) · 879 Bytes
/
build.gradle
File metadata and controls
executable file
·34 lines (26 loc) · 879 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'
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
jar {
manifest {
attributes 'Main-Class': 'main.MainServer'
}
from {
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
}
}
task srcZip(type: Zip) {
from project.rootDir
exclude '.idea', 'out', 'build', '*.zip', '.gradle', 'gradle/', 'gradlew*'
}
dependencies {
testCompile group: 'org.assertj', name: 'assertj-core', version: '3.9.1'
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile group: 'org.mockito', name: 'mockito-all', version: '1.9.5'
compile 'com.github.tomkdickinson:TwitterSearchAPI:master'
compile 'com.github.Jefferson-Henrique:GetOldTweets-java:master'
compile group: 'org.twitter4j', name: 'twitter4j-core', version: '4.0.6'
}