pekko/project/CommandLineOptions.scala
2014-12-03 16:40:59 +01:00

13 lines
385 B
Scala

package akka
object CommandLineOptions {
/**
* Aggregated sample builds are transformed by swapping library dependencies to project ones.
* This does work play well with dbuild and breaks scala community build. Therefore it was made
* optional.
*
* Default: true
*/
val aggregateSamples = sys.props.getOrElse("akka.build.aggregateSamples", "true") == "true"
}