-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstallv1.gradle
42 lines (37 loc) · 1.42 KB
/
installv1.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
apply plugin: 'com.github.dcendents.android-maven'
group = pingtank-android-sdk // Maven Group ID for the artifact
install {
repositories.mavenInstaller {
// This generates POM.xml with proper parameters
pom {
project {
packaging 'aar'
groupId publishedGroupId
artifactId artifact
// Add your description here
name PingTank
description A pingtank library for android to create animations from videos and images
url https://piglab.pingtank.com/mo/PingTank-Lakers
// Set your license
licenses {
license {
name The Apache Software License, Version 2.0
url http://www.apache.org/licenses/LICENSE-2.0.txt
}
}
developers {
developer {
id momo
name mo
email [email protected]
}
}
scm {
connection https://piglab.pingtank.com/mo/PingTank-Lakers.git
developerConnection https://piglab.pingtank.com/mo/PingTank-Lakers.git
url https://piglab.pingtank.com/mo/PingTank-Lakers.git
}
}
}
}
}