Skip to content

Commit 770a2f7

Browse files
authored
Merge pull request #3031 from allanrenucci/developers
Update developer list in Build.scala and docs
2 parents 2ae1814 + 2fa59b6 commit 770a2f7

File tree

3 files changed

+83
-54
lines changed

3 files changed

+83
-54
lines changed

docs/_includes/faq.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,13 @@ <h1 id="whos-working-on-it">Who’s working on it?</h1>
101101
</a>
102102
Aggelos Biboudis
103103
</div>
104+
105+
<div class="contributor">
106+
<a href="https://github.com/allanrenucci">
107+
<img src="{{ site.baseurl }}/images/allan.jpg">
108+
</a>
109+
Allan Renucci
110+
</div>
104111
</div>
105112
</div>
106113

docs/images/allan.jpg

22 KB
Loading

project/Build.scala

Lines changed: 76 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -984,60 +984,82 @@ object Build {
984984
)
985985

986986

987-
lazy val publishSettings = Seq(
988-
publishMavenStyle := true,
989-
isSnapshot := version.value.contains("SNAPSHOT"),
990-
publishTo := Some(
991-
if (isSnapshot.value)
992-
Opts.resolver.sonatypeSnapshots
993-
else
994-
Opts.resolver.sonatypeStaging
995-
),
996-
publishArtifact in Test := false,
997-
homepage := Some(url(dottyGithubUrl)),
998-
licenses += ("BSD New",
999-
url(s"$dottyGithubUrl/blob/master/LICENSE.md")),
1000-
scmInfo := Some(
1001-
ScmInfo(
1002-
url(dottyGithubUrl),
1003-
"scm:git:[email protected]:lampepfl/dotty.git"
1004-
)
1005-
),
1006-
pomExtra := (
1007-
<developers>
1008-
<developer>
1009-
<id>odersky</id>
1010-
<name>Martin Odersky</name>
1011-
<email>martin.odersky@epfl.ch</email>
1012-
<url>https://github.com/odersky</url>
1013-
</developer>
1014-
<developer>
1015-
<id>DarkDimius</id>
1016-
<name>Dmitry Petrashko</name>
1017-
<email>me@d-d.me</email>
1018-
<url>https://d-d.me</url>
1019-
</developer>
1020-
<developer>
1021-
<id>smarter</id>
1022-
<name>Guillaume Martres</name>
1023-
<email>smarter@ubuntu.com</email>
1024-
<url>http://guillaume.martres.me</url>
1025-
</developer>
1026-
<developer>
1027-
<id>felixmulder</id>
1028-
<name>Felix Mulder</name>
1029-
<email>felix.mulder@gmail.com</email>
1030-
<url>http://felixmulder.com</url>
1031-
</developer>
1032-
<developer>
1033-
<id>liufengyun</id>
1034-
<name>Liu Fengyun</name>
1035-
<email>liufengyun@chaos-lab.com</email>
1036-
<url>http://chaos-lab.com</url>
1037-
</developer>
1038-
</developers>
1039-
)
1040-
)
987+
lazy val publishSettings = Seq(
988+
publishMavenStyle := true,
989+
isSnapshot := version.value.contains("SNAPSHOT"),
990+
publishTo := Some(
991+
if (isSnapshot.value)
992+
Opts.resolver.sonatypeSnapshots
993+
else
994+
Opts.resolver.sonatypeStaging
995+
),
996+
publishArtifact in Test := false,
997+
homepage := Some(url(dottyGithubUrl)),
998+
licenses += ("BSD New",
999+
url(s"$dottyGithubUrl/blob/master/LICENSE.md")),
1000+
scmInfo := Some(
1001+
ScmInfo(
1002+
url(dottyGithubUrl),
1003+
"scm:git:[email protected]:lampepfl/dotty.git"
1004+
)
1005+
),
1006+
developers := List(
1007+
Developer(
1008+
id = "odersky",
1009+
name = "Martin Odersky",
1010+
email = "[email protected]",
1011+
url = url("https://github.com/odersky")
1012+
),
1013+
Developer(
1014+
id = "DarkDimius",
1015+
name = "Dmitry Petrashko",
1016+
email = "[email protected]",
1017+
url = url("https://d-d.me")
1018+
),
1019+
Developer(
1020+
id = "smarter",
1021+
name = "Guillaume Martres",
1022+
email = "[email protected]",
1023+
url = url("http://guillaume.martres.me")
1024+
),
1025+
Developer(
1026+
id = "felixmulder",
1027+
name = "Felix Mulder",
1028+
email = "[email protected]",
1029+
url = url("http://felixmulder.com")
1030+
),
1031+
Developer(
1032+
id = "liufengyun",
1033+
name = "Liu Fengyun",
1034+
email = "[email protected]",
1035+
url = url("http://chaos-lab.com")
1036+
),
1037+
Developer(
1038+
id = "nicolasstucki",
1039+
name = "Nicolas Stucki",
1040+
email = "[email protected]",
1041+
url = url("https://github.com/nicolasstucki")
1042+
),
1043+
Developer(
1044+
id = "OlivierBlanvillain",
1045+
name = "Olivier Blanvillain",
1046+
email = "[email protected]",
1047+
url = url("https://github.com/OlivierBlanvillain")
1048+
),
1049+
Developer(
1050+
id = "biboudis",
1051+
name = "Aggelos Biboudis",
1052+
email = "[email protected]",
1053+
url = url("http://biboudis.github.io")
1054+
),
1055+
Developer(
1056+
id = "allanrenucci",
1057+
name = "Allan Renucci",
1058+
email = "[email protected]",
1059+
url = url("https://github.com/allanrenucci")
1060+
)
1061+
)
1062+
)
10411063

10421064
// Compile with dotty
10431065
lazy val compileWithDottySettings = {

0 commit comments

Comments
 (0)