Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removing normalizedKey in packagerSettings. #188 #189

Merged
merged 1 commit into from
Mar 10, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package packager

import Keys._
import sbt._
import sbt.Keys.{ name, mappings, sourceDirectory }
import sbt.Keys.{ name, mappings, sourceDirectory, normalizedName }
import linux.LinuxSymlink
import linux.LinuxPackageMapping

Expand Down
3 changes: 0 additions & 3 deletions src/main/scala/com/typesafe/sbt/packager/Keys.scala
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@ object Keys extends linux.Keys
with windows.WindowsKeys
with universal.UniversalKeys {

// TODO - Do these keys belong here?
def normalizedName = sbt.Keys.normalizedName

// These keys are used by the JavaApp/JavaServer archetypes.
val makeBashScript = TaskKey[Option[File]]("makeBashScript", "Creates or discovers the bash script used by this project.")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is just an alias. I use this as a means of telling myself what keys I use elsewhere. It's ok to remove.

val bashScriptDefines = TaskKey[Seq[String]]("bashScriptDefines", "A list of definitions that should be written to the bash file template.")
Expand Down