forked from microconfig/microconfig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpomSettings.gradle
35 lines (35 loc) · 1.06 KB
/
pomSettings.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
ext {
pomConfig = {
name 'MicroConfig'
url 'https://microconfig.io/'
licenses {
license {
name 'The Apache License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
scm {
connection 'scm:git:https://github.com/microconfig/microconfig.git'
developerConnection 'scm:git:https://github.com/microconfig/microconfig.git'
url 'https://microconfig.io'
}
developers {
developer {
id 'amatorin'
name 'Alexander Matorin'
email '[email protected]'
}
developer {
id 'esladkovski'
name 'Evgeni Sladkowski'
email '[email protected]'
}
developer {
id 'apavlov'
name 'Artem Pavlov'
email '[email protected]'
}
}
}
pomDescription = 'Powerful tool for microservice configuration management'
}