add license header to sbt files (#359)

* add license header to sbt files

* Update plugins.sbt
This commit is contained in:
PJ Fanning 2023-05-29 03:35:14 +01:00 committed by GitHub
parent 037da28382
commit bbb3be1b1e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 21 additions and 2 deletions

View file

@ -1,3 +1,12 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* license agreements; and to You under the Apache License, version 2.0:
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* This file is part of the Apache Pekko project, derived from Akka.
*/
import org.apache.pekko._
ThisBuild / scalafixScalaBinaryVersion := scalaBinaryVersion.value

View file

@ -35,7 +35,8 @@ trait CopyrightHeader extends AutoPlugin {
HeaderFileType.scala -> cStyleComment,
HeaderFileType.java -> cStyleComment,
HeaderFileType.conf -> hashLineComment,
HeaderFileType("template") -> cStyleComment)))
HeaderFileType("template") -> cStyleComment,
HeaderFileType("sbt") -> cStyleComment)))
}
override def projectSettings: Seq[Def.Setting[_]] =

View file

@ -1,3 +1,12 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* license agreements; and to You under the Apache License, version 2.0:
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* This file is part of the Apache Pekko project, derived from Akka.
*/
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.1.1")
addSbtPlugin("com.lightbend.sbt" % "sbt-java-formatter" % "0.7.0")
@ -13,7 +22,7 @@ addSbtPlugin("com.thoughtworks.sbt-api-mappings" % "sbt-api-mappings" % "3.0.2")
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.3")
addSbtPlugin("io.spray" % "sbt-boilerplate" % "0.6.1")
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.7.0")
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.9.0")
addSbtPlugin("com.hpe.sbt" % "sbt-pull-request-validator" % "1.0.0")
addSbtPlugin("net.bzzt" % "sbt-reproducible-builds" % "0.30")