-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
52 lines (42 loc) · 1.08 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
40
41
42
43
44
45
46
47
48
49
50
51
52
buildscript {
repositories {
mavenCentral()
jcenter()
}
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'maven'
apply plugin: 'maven-publish'
group = 'com.github.abdulrahmank'
install {
repositories.mavenInstaller {
pom.version = '1.0.0'
}
}
jar {
baseName = 'redis_migration'
version = '1.0'
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
// Redis migraiton
compile files('libs/yamlbeans-1.06.jar')
compile group: 'redis.clients', name: 'jedis', version: '1.5.0'
// message pack
compile 'org.msgpack:msgpack-core:0.8.7'
compile 'org.msgpack:jackson-dataformat-msgpack:0.8.7'
compile 'com.fasterxml.jackson.core:jackson-databind:2.2.+'
compile 'com.fasterxml.jackson.core:jackson-core:2.2.+'
compile 'com.fasterxml.jackson.core:jackson-annotations:2.2.+'
// tests
testCompile 'junit:junit:1.6.1'
testCompile 'org.mockito:mockito-all:1.9.5'
testCompile "org.powermock:powermock-mockito-release-full:1.6.1"
}
task wrapper(type: Wrapper) {
gradleVersion = '2.3'
}