Added Android code
[wl-app.git] / Android / folioreader / bintray / installv1.gradle
1 apply plugin: 'com.github.dcendents.android-maven'
2
3 group = publishedGroupId                               // Maven Group ID for the artifact
4
5 install {
6     repositories.mavenInstaller {
7         // This generates POM.xml with proper parameters
8         pom {
9             project {
10                 packaging 'aar'
11                 groupId publishedGroupId
12                 artifactId artifact
13
14                 // Add your description here
15                 name libraryName
16                 description libraryDescription
17                 url siteUrl
18
19                 // Set your license
20                 licenses {
21                     license {
22                         name licenseName
23                         url licenseUrl
24                     }
25                 }
26                 developers {
27                     developer {
28                         id developerId
29                         name developerName
30                         email developerEmail
31                     }
32                 }
33                 scm {
34                     connection gitUrl
35                     developerConnection gitUrl
36                     url siteUrl
37
38                 }
39             }
40         }
41     }
42 }