change email in pom.xml (#29116)

This commit is contained in:
Patrik Nordwall 2020-05-25 14:23:43 +02:00 committed by GitHub
parent c45e6ef39b
commit 07165d181b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -35,7 +35,7 @@ object Publish extends AutoPlugin {
<developer> <developer>
<id>akka-contributors</id> <id>akka-contributors</id>
<name>Akka Contributors</name> <name>Akka Contributors</name>
<email>akka-dev@googlegroups.com</email> <email>akka.official@gmail.com</email>
<url>https://github.com/akka/akka/graphs/contributors</url> <url>https://github.com/akka/akka/graphs/contributors</url>
</developer> </developer>
</developers> </developers>
@ -43,7 +43,8 @@ object Publish extends AutoPlugin {
private def akkaPublishTo = Def.setting { private def akkaPublishTo = Def.setting {
val key = new java.io.File( val key = new java.io.File(
Option(System.getProperty("akka.gustav.key")).getOrElse(System.getProperty("user.home") + "/.ssh/id_rsa_gustav.pem")) Option(System.getProperty("akka.gustav.key"))
.getOrElse(System.getProperty("user.home") + "/.ssh/id_rsa_gustav.pem"))
if (isSnapshot.value) if (isSnapshot.value)
Resolver.sftp("Akka snapshots", "gustav.akka.io", "/home/akkarepo/www/snapshots").as("akkarepo", key) Resolver.sftp("Akka snapshots", "gustav.akka.io", "/home/akkarepo/www/snapshots").as("akkarepo", key)
else else