mirror of https://github.com/sbt/sbt.git
22 lines
367 B
Scala
22 lines
367 B
Scala
|
|
|
||
|
|
import sbt._
|
||
|
|
import sbt.Defaults.itSettings
|
||
|
|
import sbt.Keys._
|
||
|
|
import sbt.ScriptedPlugin.scriptedSettings
|
||
|
|
|
||
|
|
import com.typesafe.sbt.SbtProguard.proguardSettings
|
||
|
|
|
||
|
|
object Aliases {
|
||
|
|
|
||
|
|
def libs = libraryDependencies
|
||
|
|
|
||
|
|
def withScriptedTests = scriptedSettings
|
||
|
|
|
||
|
|
def hasITs = itSettings
|
||
|
|
|
||
|
|
def proguard = proguardSettings
|
||
|
|
|
||
|
|
def ShadingPlugin = coursier.ShadingPlugin
|
||
|
|
|
||
|
|
}
|