diff --git a/docs/_includes/faq.html b/docs/_includes/faq.html index 6842ebb40cd5..5178e6029271 100644 --- a/docs/_includes/faq.html +++ b/docs/_includes/faq.html @@ -101,6 +101,13 @@

Who’s working on it?

Aggelos Biboudis + +
+ + + + Allan Renucci +
diff --git a/docs/images/allan.jpg b/docs/images/allan.jpg new file mode 100644 index 000000000000..74a229dea3ee Binary files /dev/null and b/docs/images/allan.jpg differ diff --git a/project/Build.scala b/project/Build.scala index b19d86921be5..08ab401cd4db 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -984,60 +984,82 @@ object Build { ) - lazy val publishSettings = Seq( - publishMavenStyle := true, - isSnapshot := version.value.contains("SNAPSHOT"), - publishTo := Some( - if (isSnapshot.value) - Opts.resolver.sonatypeSnapshots - else - Opts.resolver.sonatypeStaging - ), - publishArtifact in Test := false, - homepage := Some(url(dottyGithubUrl)), - licenses += ("BSD New", - url(s"$dottyGithubUrl/blob/master/LICENSE.md")), - scmInfo := Some( - ScmInfo( - url(dottyGithubUrl), - "scm:git:git@github.com:lampepfl/dotty.git" - ) - ), - pomExtra := ( - - - odersky - Martin Odersky - martin.odersky@epfl.ch - https://github.com/odersky - - - DarkDimius - Dmitry Petrashko - me@d-d.me - https://d-d.me - - - smarter - Guillaume Martres - smarter@ubuntu.com - http://guillaume.martres.me - - - felixmulder - Felix Mulder - felix.mulder@gmail.com - http://felixmulder.com - - - liufengyun - Liu Fengyun - liufengyun@chaos-lab.com - http://chaos-lab.com - - - ) - ) + lazy val publishSettings = Seq( + publishMavenStyle := true, + isSnapshot := version.value.contains("SNAPSHOT"), + publishTo := Some( + if (isSnapshot.value) + Opts.resolver.sonatypeSnapshots + else + Opts.resolver.sonatypeStaging + ), + publishArtifact in Test := false, + homepage := Some(url(dottyGithubUrl)), + licenses += ("BSD New", + url(s"$dottyGithubUrl/blob/master/LICENSE.md")), + scmInfo := Some( + ScmInfo( + url(dottyGithubUrl), + "scm:git:git@github.com:lampepfl/dotty.git" + ) + ), + developers := List( + Developer( + id = "odersky", + name = "Martin Odersky", + email = "martin.odersky@epfl.ch", + url = url("https://github.com/odersky") + ), + Developer( + id = "DarkDimius", + name = "Dmitry Petrashko", + email = "me@d-d.me", + url = url("https://d-d.me") + ), + Developer( + id = "smarter", + name = "Guillaume Martres", + email = "smarter@ubuntu.com", + url = url("http://guillaume.martres.me") + ), + Developer( + id = "felixmulder", + name = "Felix Mulder", + email = "felix.mulder@gmail.com", + url = url("http://felixmulder.com") + ), + Developer( + id = "liufengyun", + name = "Liu Fengyun", + email = "liufengyun@chaos-lab.com", + url = url("http://chaos-lab.com") + ), + Developer( + id = "nicolasstucki", + name = "Nicolas Stucki", + email = "nicolas.stucki@gmail.com", + url = url("https://github.com/nicolasstucki") + ), + Developer( + id = "OlivierBlanvillain", + name = "Olivier Blanvillain", + email = "olivier.blanvillain@gmail.com", + url = url("https://github.com/OlivierBlanvillain") + ), + Developer( + id = "biboudis", + name = "Aggelos Biboudis", + email = "aggelos.biboudis@epfl.ch", + url = url("http://biboudis.github.io") + ), + Developer( + id = "allanrenucci", + name = "Allan Renucci", + email = "allan.renucci@gmail.com", + url = url("https://github.com/allanrenucci") + ) + ) + ) // Compile with dotty lazy val compileWithDottySettings = {