aboutsummaryrefslogtreecommitdiff
path: root/maven.gradle
blob: e325de008b3d8bea12c0bde9102e1dbac258c33f (plain)
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
apply plugin: 'com.github.dcendents.android-maven'

install {
    repositories.mavenInstaller {
        pom {
            project {
                packaging 'aar'
                version = ddVersion
                groupId = ddGroup
                artifactId = ddArtifactId

                description = ddDescription
                url ddWebsite

                licenses {
                    license {
                        name 'The Apache Software License, Version 2.0'
                        url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
                    }
                }

                scm {
                    connection ddGit
                    developerConnection ddGit
                    url ddWebsite
                }

                issueManagement {
                    url ddTracker
                }
            }
        }
    }
}