-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpom.gradle
72 lines (64 loc) · 2.26 KB
/
pom.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
project.ext.customizePom = { Closure customize ->
customize.resolveStrategy = Closure.DELEGATE_ONLY
customize.delegate = project.ext.customizePomValue
customize()
}
project.ext.customizePomValue = new Object() {
def String name
def String description
}
modifyPom {
project {
if(customizePomValue.name) { name customizePomValue.name }
if(customizePomValue.description) { description customizePomValue.description }
url "https://github.com/jakenjarvis/Android-OrmLiteContentProvider/"
inceptionYear "2012"
scm {
url "https://github.com/jakenjarvis/Android-OrmLiteContentProvider/"
connection "scm:git:git://github.com/jakenjarvis/Android-OrmLiteContentProvider.git"
developerConnection "scm:git:[email protected]:jakenjarvis/Android-OrmLiteContentProvider.git"
tag project.version.contains("SNAPSHOT") ? "HEAD" : "Ver${project.version}"
}
developers {
developer {
id "jakenjarvis"
name "Jaken Jarvis"
email "[email protected]"
url "https://github.com/jakenjarvis"
roles {
role "architect"
role "developer"
}
timezone "+9"
}
}
contributors {
contributor {
name "Stephane NICOLAS"
email "[email protected]"
url "https://github.com/stephanenicolas"
organization "octo-online"
organizationUrl "http://www.octo.com"
roles {
role "developer"
}
timezone "+1"
}
}
licenses {
license {
name "Apache License, Version 2.0"
url "http://www.apache.org/licenses/LICENSE-2.0.txt"
distribution "repo"
}
}
organization {
name "Android-OrmLiteContentProvider Team"
url "https://github.com/jakenjarvis/Android-OrmLiteContentProvider"
}
issueManagement {
system "GitHub Issues"
url "https://github.com/jakenjarvis/Android-OrmLiteContentProvider/issues"
}
}
}