We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a18f11d commit 81a9d80Copy full SHA for 81a9d80
deploy.gradle
@@ -97,6 +97,29 @@ subprojects {
97
system = 'GitHub'
98
url = 'https://github.com/linkedin/iceberg/issues'
99
}
100
+ developers {
101
+ [
102
+ 'wmoustafa:Walaa Eldin Moustafa',
103
+ 'sumedhsakdeo:Sumedh Sakdeo',
104
+ 'maluchari:Malini Mahalakshmi Venkatachari',
105
+ 'rdsr:Ratandeep Ratti'
106
+ ].each { devData ->
107
+ developer {
108
+ def devInfo = devData.split(':')
109
+ id = devInfo[0]
110
+ name = devInfo[1]
111
+ url = 'https://github.com/' + devInfo[0]
112
+ roles = ["Core developer"]
113
+ }
114
115
116
+ scm {
117
+ url = 'https://github.com/linkedin/iceberg.git'
118
119
+ ciManagement {
120
+ url = 'https://github.com/linkedin/iceberg/actions'
121
+ system = 'GitHub Actions'
122
123
124
125
0 commit comments