Skip to content

Update developer list in Build.scala and docs #3031

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 29, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions docs/_includes/faq.html
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,13 @@ <h1 id="whos-working-on-it">Who’s working on it?</h1>
</a>
Aggelos Biboudis
</div>

<div class="contributor">
<a href="https://github.com/allanrenucci">
<img src="{{ site.baseurl }}/images/allan.jpg">
</a>
Allan Renucci
</div>
</div>
</div>

Expand Down
Binary file added docs/images/allan.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
130 changes: 76 additions & 54 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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 := (
<developers>
<developer>
<id>odersky</id>
<name>Martin Odersky</name>
<email>martin.odersky@epfl.ch</email>
<url>https://github.com/odersky</url>
</developer>
<developer>
<id>DarkDimius</id>
<name>Dmitry Petrashko</name>
<email>me@d-d.me</email>
<url>https://d-d.me</url>
</developer>
<developer>
<id>smarter</id>
<name>Guillaume Martres</name>
<email>smarter@ubuntu.com</email>
<url>http://guillaume.martres.me</url>
</developer>
<developer>
<id>felixmulder</id>
<name>Felix Mulder</name>
<email>felix.mulder@gmail.com</email>
<url>http://felixmulder.com</url>
</developer>
<developer>
<id>liufengyun</id>
<name>Liu Fengyun</name>
<email>liufengyun@chaos-lab.com</email>
<url>http://chaos-lab.com</url>
</developer>
</developers>
)
)
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"
)
),
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nothing changed up to this line. Indentation was off

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 = {
Expand Down