* RootSettings plugin contains settings for root project * other auto plugins that are meant only for root project depend on RootSettings * other auto plugins that are meant for every project are enabled by default reducing boilerplate
10 lines
199 B
Scala
10 lines
199 B
Scala
/**
|
|
* Copyright (C) 2009-2014 Typesafe Inc. <http://www.typesafe.com>
|
|
*/
|
|
package akka
|
|
|
|
import sbt.AutoPlugin
|
|
|
|
object RootSettings extends AutoPlugin {
|
|
// settings for root project will go here
|
|
}
|