34 lines
1.1 KiB
Scala
34 lines
1.1 KiB
Scala
/*
|
|
* 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, which was derived from Akka.
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2019-2022 Lightbend Inc. <https://www.lightbend.com>
|
|
*/
|
|
|
|
import CopyrightHeader.cStyleComment
|
|
import de.heikoseeberger.sbtheader.HeaderPlugin.autoImport.{ headerMappings, headerSources, HeaderFileType }
|
|
import sbt.Keys.sourceDirectory
|
|
import sbt.{ inConfig, Compile, Def, Test, _ }
|
|
|
|
object CopyrightHeaderForProtobuf extends AutoPlugin {
|
|
|
|
override lazy val requires = CopyrightHeader
|
|
override lazy val trigger = allRequirements
|
|
|
|
override lazy val projectSettings: Seq[Def.Setting[_]] = {
|
|
Seq(Compile, Test).flatMap { config =>
|
|
inConfig(config) {
|
|
Seq(
|
|
config / headerSources ++=
|
|
(((config / sourceDirectory).value / "protobuf") ** "*.proto").get,
|
|
headerMappings := headerMappings.value ++ Map(HeaderFileType("proto") -> cStyleComment))
|
|
}
|
|
}
|
|
}
|
|
}
|