Skip to content

Commit

Permalink
Merge pull request #69 from mdedetrich/change-defs-to-val
Browse files Browse the repository at this point in the history
  • Loading branch information
eed3si9n authored May 12, 2023
2 parents d59a6b2 + 78db392 commit 9ca61b6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/main/scala/sbtlicensereport/SbtLicenseReport.scala
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ object SbtLicenseReport extends AutoPlugin {
object autoImportImpl {
// Types and objects to auto-expose
type LicenseCategory = sbtlicensereport.license.LicenseCategory
def LicenseCategory = sbtlicensereport.license.LicenseCategory
val LicenseCategory = sbtlicensereport.license.LicenseCategory
type TargetLanguage = sbtlicensereport.license.TargetLanguage
type LicenseReportConfiguration = sbtlicensereport.license.LicenseReportConfiguration
type DepModuleInfo = sbtlicensereport.license.DepModuleInfo
type Column = sbtlicensereport.license.Column
val DepModuleInfo = sbtlicensereport.license.DepModuleInfo
val Column = sbtlicensereport.license.Column
def LicenseReportConfiguration = sbtlicensereport.license.LicenseReportConfiguration
def Html = sbtlicensereport.license.Html
def MarkDown = sbtlicensereport.license.MarkDown
def Csv = sbtlicensereport.license.Csv
def ConfluenceWikiMarkup = sbtlicensereport.license.ConfluenceWikiMarkup
val LicenseReportConfiguration = sbtlicensereport.license.LicenseReportConfiguration
val Html = sbtlicensereport.license.Html
val MarkDown = sbtlicensereport.license.MarkDown
val Csv = sbtlicensereport.license.Csv
val ConfluenceWikiMarkup = sbtlicensereport.license.ConfluenceWikiMarkup

// Keys
val updateLicenses = taskKey[LicenseReport]("Construct a report of used licenses in a build.")
Expand Down

0 comments on commit 9ca61b6

Please sign in to comment.