-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbintray-install.gradle
More file actions
40 lines (34 loc) · 1.14 KB
/
bintray-install.gradle
File metadata and controls
40 lines (34 loc) · 1.14 KB
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
apply plugin: 'com.github.dcendents.android-maven'
group = bintrayMaven.groupId
version = bintrayMaven.version
install {
repositories.mavenInstaller {
pom.project {
url bintrayMaven.projectUrl
inceptionYear bintrayMaven.projectInceptionYear
packaging 'aar'
groupId bintrayMaven.groupId
artifactId project.archivesBaseName
version bintrayMaven.version
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
distribution 'repo'
}
}
scm {
url bintrayMaven.projectUrl
connection bintrayMaven.projectScmConnection
developerConnection bintrayMaven.projectScmDevConnection
}
developers {
developer {
id bintrayMaven.developerId
name bintrayMaven.developerName
email bintrayMaven.developerEmail
}
}
}
}
}