-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathbuild.gradle
69 lines (55 loc) · 1.64 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
group 'com.instamojo'
version '2.0.2'
apply plugin: 'java'
apply plugin: 'jacoco'
sourceCompatibility = 1.8
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
}
}
allprojects {
repositories {
jcenter()
}
}
ext {
bintrayRepo = 'maven'
bintrayName = 'wrappers'
publishedGroupId = 'com.instamojo'
libraryName = 'Instamojo Java'
artifact = 'instamojo-java'
libraryDescription = 'Instamojo Payments Java Wrapper'
siteUrl = 'https://github.com/Instamojo/instamojo-java'
gitUrl = 'https://github.com/Instamojo/instamojo-java.git'
libraryVersion = '2.0.2'
developerId = 'vijith'
developerName = 'Vijith Kumar'
developerEmail = 'support@instamojo.com'
licenseName = 'MIT License'
licenseUrl = 'https://opensource.org/licenses/MIT'
allLicenses = ["MIT"]
}
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.2'
compile group: 'org.apache.httpcomponents', name: 'httpcore', version: '4.4.4'
compile group: 'commons-codec', name: 'commons-codec', version: '1.11'
compile group: 'commons-logging', name: 'commons-logging', version: '1.2'
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
}
jacocoTestReport {
reports {
xml.enabled true
html.enabled false
}
}
apply from: './install.gradle'
apply from: './bintray.gradle'