Skip to content

Commit 81a9d80

Browse files
authored
Update scm and developer info (#182)
1 parent a18f11d commit 81a9d80

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

deploy.gradle

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,29 @@ subprojects {
9797
system = 'GitHub'
9898
url = 'https://github.com/linkedin/iceberg/issues'
9999
}
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+
}
100123
}
101124
}
102125
}

0 commit comments

Comments
 (0)