-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7709f5d
commit 389a193
Showing
1 changed file
with
3 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,13 +13,15 @@ ThisBuild / mimaReportSignatureProblems := false | |
ThisBuild / mimaFailOnProblem := false | ||
ThisBuild / mimaPreviousArtifacts := Set.empty | ||
|
||
ThisBuild / licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")) | ||
ThisBuild / licenses := Seq(License.Apache2) | ||
ThisBuild / developers := List( | ||
Developer("valdemargr", "Valdemar Grange", "[email protected]", url("https://github.com/valdemargr")) | ||
) | ||
ThisBuild / headerLicense := Some(HeaderLicense.Custom("Copyright (c) 2024 Valdemar Grange")) | ||
ThisBuild / headerEmptyLine := false | ||
|
||
ThisBuild / startYear := Some(2024) | ||
|
||
lazy val sharedSettings = Seq( | ||
organization := "io.github.valdemargr", | ||
organizationName := "Valdemar Grange", | ||
|