mirror of https://github.com/sbt/sbt.git
Add NOTICE and headerLicense
This commit is contained in:
parent
a90bdcf703
commit
6c1217847e
10
build.sbt
10
build.sbt
|
|
@ -1429,7 +1429,15 @@ lazy val lmIvy = (project in file("lm-ivy"))
|
|||
|
||||
lazy val lmCoursierSettings: Seq[Setting[_]] = Def.settings(
|
||||
baseSettings,
|
||||
headerLicense := None,
|
||||
headerLicense := Some(
|
||||
HeaderLicense.Custom(
|
||||
"""|sbt
|
||||
|Copyright 2024, Scala Center
|
||||
|Copyright 2015 - 2023, Alexandre Archambault
|
||||
|Licensed under Apache License 2.0 (see LICENSE)
|
||||
|""".stripMargin
|
||||
)
|
||||
),
|
||||
developers +=
|
||||
Developer(
|
||||
"alexarchambault",
|
||||
|
|
|
|||
|
|
@ -0,0 +1,13 @@
|
|||
Coursier-based implementation of sbt-librarymanagement
|
||||
Copyright 2015-2024 Alexandre Archambault
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
Loading…
Reference in New Issue