2023-01-08 17:13:31 +08:00
|
|
|
/*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2019-01-02 18:55:26 +08:00
|
|
|
/*
|
2022-02-04 12:36:44 +01:00
|
|
|
* Copyright (C) 2019-2022 Lightbend Inc. <https://www.lightbend.com>
|
2019-01-02 18:55:26 +08:00
|
|
|
*/
|
|
|
|
|
|
2022-11-12 10:21:24 +01:00
|
|
|
package org.apache.pekko
|
2019-01-15 20:35:53 +08:00
|
|
|
|
2021-02-01 15:38:29 +00:00
|
|
|
import de.heikoseeberger.sbtheader.HeaderPlugin.autoImport.{ headerMappings, headerSources, HeaderFileType }
|
2019-01-02 18:55:26 +08:00
|
|
|
import sbt.Keys.sourceDirectory
|
2021-02-01 15:38:29 +00:00
|
|
|
import sbt.{ inConfig, Compile, Def, Test, _ }
|
2019-01-02 18:55:26 +08:00
|
|
|
|
|
|
|
|
object CopyrightHeaderForProtobuf extends CopyrightHeader {
|
|
|
|
|
override protected def headerMappingSettings: Seq[Def.Setting[_]] = {
|
|
|
|
|
super.headerMappingSettings
|
|
|
|
|
Seq(Compile, Test).flatMap { config =>
|
|
|
|
|
inConfig(config) {
|
|
|
|
|
Seq(
|
2021-05-25 12:50:51 +02:00
|
|
|
config / headerSources ++=
|
|
|
|
|
(((config / sourceDirectory).value / "protobuf") ** "*.proto").get,
|
2021-02-01 15:38:29 +00:00
|
|
|
headerMappings := headerMappings.value ++ Map(HeaderFileType("proto") -> cStyleComment))
|
2019-01-02 18:55:26 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|