forked from Qi4j/qi4j-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
maven-compat.gradle
225 lines (209 loc) · 4.81 KB
/
maven-compat.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
apply plugin: 'maven'
pom {
project {
url 'http://www.qi4j.org'
organization {
name 'Qi4j Community'
url 'http://www.qi4j.org'
}
inceptionYear '2007'
issueManagement {
system 'jira'
url 'http://team.ops4j.org/browse/QI'
}
scm {
url "http://github.com/Qi4j/qi4j-sdk"
connection "scm:git:http://github.com/Qi4j/qi4j-sdk.git"
developerConnection "scm:git:[email protected]:Qi4j/qi4j-sdk.git"
}
licenses {
license {
name 'Apache License version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0'
}
}
developers {
developer {
id '[email protected]'
name 'Niclas Hedhman'
email '[email protected]'
roles {
role 'Core Team'
}
organizationUrl 'http://www.qi4j.org'
timezone 'UTC+8'
}
developer {
id 'rickardoberg'
name 'Rickard \u00F6berg'
email '[email protected]'
roles {
role 'Core Team'
}
url 'http://www.neotechnology.com'
organization 'Neo Technology AB'
organizationUrl 'http://www.neotechnology.com'
timezone 'UTC+8'
}
developer {
id '[email protected]'
name 'Edward Yakop'
email '[email protected]'
roles {
role 'Core Team'
}
organizationUrl 'http://www.qi4j.org'
timezone 'UTC+8'
}
developer {
id '[email protected]'
name 'Alin Dreghiciu'
email '[email protected]'
roles {
role 'Core Team'
}
organizationUrl 'http://www.qi4j.org'
timezone 'UTC+2'
}
developer {
id 'mesirii'
name 'Michael Hunger'
email '[email protected]'
roles {
role 'Core Team'
}
timezone 'CET'
}
developer {
id "muhdkamil"
name "Muhd Kamil bin Mohd Baki"
roles {
role 'Platform Team'
}
timezone "UTC+8"
}
developer {
id "[email protected]"
name "David Leangen"
organization "Bioscene"
email "[email protected]"
roles {
role 'Platform Team'
}
timezone "UTC+9"
}
developer {
id "[email protected]"
name "Sonny Gill"
email "[email protected]"
roles {
role 'Community Team'
}
timezone "UTC+8"
}
developer {
id "taowen"
name "Tao Wen"
organization ""
email "[email protected]"
roles {
role 'Community Team'
}
timezone "UTC+8"
}
developer {
id "thobe"
name "Tobias Ivarsson"
email "[email protected]"
url "http://www.neotechnology.com"
organization "NeoTechnology"
organizationUrl "http://www.neotechnology.com"
roles {
role "Platform Team"
}
timezone "CET"
}
developer {
id "boon"
name "Lan Boon Ping"
email "[email protected]"
roles {
role 'Platform Team'
}
timezone "UTC+8"
}
developer {
id "[email protected]"
name "Jan Kronquist"
email "[email protected]"
organization "Jayway"
roles {
role 'Platform Team'
}
timezone "CET"
}
developer {
id "nmwael"
name "Nino Saturnino Martinez Vazquez Wael"
roles {
role 'Platform Team'
}
timezone "CET"
}
developer {
id "[email protected]"
name "Peter Neubauer"
email "[email protected]"
roles {
role 'Platform Team'
}
timezone "CET"
}
developer {
id "rwallace"
name "Richard Wallace"
email "[email protected]"
roles {
role 'Platform Team'
}
timezone "UTC-7"
}
developer {
id "[email protected]"
name "Sianny Halim"
email "[email protected]"
roles {
role 'Platform Team'
}
timezone "UTC+8"
}
developer {
id "[email protected]"
name "Paul Merlin"
email "[email protected]"
roles {
role 'Core Team'
}
timezone "CET"
}
developer {
id "[email protected]"
name "Stanislav Muhametsin"
email "[email protected]"
roles {
role 'Platform Team'
}
timezone "UTC+2"
}
developer {
id "tonny"
name "Tonny Kohar"
roles {
role "Community Team"
}
email "[email protected]"
timezone "UTC+7"
}
}
}
}