Skip to content

Commit 3b92956

Browse files
committed
Merge pull request #189 from sbt/wip/normalizedKey
Removing `normalizedKey` in packagerSettings. #188
2 parents 842aeee + 852d2ab commit 3b92956

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/main/scala/com/typesafe/sbt/packager/GenericPackageSettings.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package packager
33

44
import Keys._
55
import sbt._
6-
import sbt.Keys.{ name, mappings, sourceDirectory }
6+
import sbt.Keys.{ name, mappings, sourceDirectory, normalizedName }
77
import linux.LinuxSymlink
88
import linux.LinuxPackageMapping
99

src/main/scala/com/typesafe/sbt/packager/Keys.scala

-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ object Keys extends linux.Keys
99
with windows.WindowsKeys
1010
with universal.UniversalKeys {
1111

12-
// TODO - Do these keys belong here?
13-
def normalizedName = sbt.Keys.normalizedName
14-
1512
// These keys are used by the JavaApp/JavaServer archetypes.
1613
val makeBashScript = TaskKey[Option[File]]("makeBashScript", "Creates or discovers the bash script used by this project.")
1714
val bashScriptDefines = TaskKey[Seq[String]]("bashScriptDefines", "A list of definitions that should be written to the bash file template.")

0 commit comments

Comments
 (0)