forked from apereo/cas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaven.gradle
231 lines (218 loc) · 7.52 KB
/
maven.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
def generatePom() {
def pom = pom {
project {
url "$projectUrl"
inceptionYear project.projectInceptionYear
name project.name
description project.name
issueManagement {
system project.projectIssueSystem
url project.projectIssueUrl
}
scm {
url project.projectScmUrl
connection project.projectScmUrl
developerConnection project.projectScmUrl
}
licenses {
license {
name project.projectLicenseName
url project.projectLicenseUrl
distribution project.projectLicenseDistribution
}
}
developers {
developer {
id "leleuj"
name "Jérôme Leleu"
}
developer {
id "tduehr"
name "Timur Duehr"
}
developer {
id "mindblender"
name "Jeff Sittler"
}
developer {
id "apetro"
name "Andrew Petro"
}
developer {
id "wgthom"
name "William G. Thompson"
}
developer {
id "serac"
name "Marvin S. Addison"
}
developer {
id "battags"
name "Scott Battaglia"
}
developer {
id "mmoayyed"
name "Misagh Moayyed"
}
developer {
id "robertoschwald"
name "Robert Oschwald"
}
developer {
id "frett"
name "Daniel Frett"
}
developer {
id "dima767"
name "Dmitriy Kopylenko"
}
developer {
id "tsschmidt"
name "Travis Schmidt"
}
}
contributors {
contributor {
name "Adam Rybicki"
email "[email protected]"
}
contributor {
name "Andrew Tillinghast"
email "[email protected]"
}
contributor {
name "Arnaud Lesueur"
email "[email protected]"
}
contributor {
name "Drew Mazurek"
email "[email protected]"
}
contributor {
name "Eric Dalquist"
email "[email protected]"
}
contributor {
name "Eric Pierce"
email "[email protected]"
}
contributor {
name "Frederic Esnault"
email "[email protected]"
}
contributor {
name "Howard Gilbert"
email "[email protected]"
}
contributor {
name "Jan Van der Velpen"
email "[email protected]"
}
contributor {
name "John Martin"
email "[email protected]"
}
contributor {
name "MarcAntoine Garrigue"
email "[email protected]"
}
contributor {
name "Mihir Patel"
email "[email protected]"
}
contributor {
name "Fredrik Jönsson"
email "[email protected]"
}
}
mailingLists {
mailingList {
name "cas-user"
subscribe "https://groups.google.com/a/apereo.org/forum/#!forum/cas-user"
unsubscribe "https://groups.google.com/a/apereo.org/forum/#!forum/cas-user"
post "[email protected]"
archive "https://groups.google.com/forum/#!forum/jasig-cas-user"
}
mailingList {
name "cas-dev"
subscribe "https://groups.google.com/a/apereo.org/forum/#!forum/cas-dev"
unsubscribe "https://groups.google.com/a/apereo.org/forum/#!forum/cas-dev"
post "[email protected]"
archive "https://groups.google.com/forum/#!forum/jasig-cas-dev"
}
mailingList {
name "cas-announce"
subscribe "https://groups.google.com/a/apereo.org/forum/#!forum/cas-announce"
unsubscribe "https://groups.google.com/a/apereo.org/forum/#!forum/cas-announce"
post "[email protected]"
archive "https://groups.google.com/a/apereo.org/forum/#!forum/cas-announce"
}
}
repositories {
repository {
id "jcenter"
url "https://jcenter.bintray.com"
releases {
enabled true
}
}
repository {
id "shib-release"
url "https://build.shibboleth.net/nexus/content/repositories/releases"
releases {
enabled true
}
}
repository {
id "jitpack"
url "https://jitpack.io"
releases {
enabled true
}
}
repository {
id "spring-plugins"
url "https://repo.spring.io/plugins-release/"
releases {
enabled true
}
}
repository {
id "couchbase"
url "https://files.couchbase.com/maven2/"
releases {
enabled true
}
}
repository {
id "uniconiam"
url "https://dl.bintray.com/uniconiam/maven"
releases {
enabled true
}
}
}
}
}.whenConfigured { pom ->
logger.info "POM is fully configured for $project.name"
}
}
uploadArchives {
doFirst {
repositories.mavenDeployer.pom = generatePom()
}
repositories.mavenDeployer {
configuration = configurations.archives
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
if (publishingRelease) {
repository(url: "$sonatypeRepositoryUrl") {
authentication(userName: sonatypeUsername, password: sonatypePassword);
}
}
if (publishSnapshots) {
snapshotRepository(url: "$sonatypeSnapshotsRepositoryUrl") {
authentication(userName: sonatypeUsername, password: sonatypePassword);
}
}
}
}