-
Notifications
You must be signed in to change notification settings - Fork 20
/
install.gradle
41 lines (36 loc) · 1.14 KB
/
install.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
apply plugin: 'com.github.dcendents.android-maven'
// Maven Group ID for the artifact
group = 'com.instamojo'
install {
repositories.mavenInstaller {
// This generates POM.xml with proper parameters
pom {
project {
packaging 'aar'
groupId 'com.instamojo'
artifactId 'android-sdk'
name 'Instamojo Android SDK'
description libraryDescription
url siteUrl
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
developers {
developer {
id 'instamojo'
name 'Instamojo Technologies'
email '[email protected]'
}
}
scm {
connection gitUrl
developerConnection gitUrl
url siteUrl
}
}
}
}
}