Documentation

You are viewing the documentation for the 2.8.x release series. The latest stable release series is 3.0.x.

§About sbt Settings

§About sbt settings

The build.sbt file defines settings for your project. You can also define your own custom settings for your project, as described in the sbt documentation. In particular, it helps to be familiar with the settings in sbt.

To set a basic setting, use the := operator:

confDirectory := "myConfFolder"     

§Default settings for Java applications

Play defines a default set of settings suitable for Java-based applications. To enable them add the PlayJava plugin via your project’s enablePlugins method. These settings mostly define the default imports for generated templates e.g. importing java.lang.* so types like Long are the Java ones by default instead of the Scala ones. play.Project.playJavaSettings also imports java.util.* so that the default collection library will be the Java one.

§Default settings for Scala applications

Play defines a default set of settings suitable for Scala-based applications. To enable them add the PlayScala plugin via your project’s enablePlugins method. These default settings define the default imports for generated templates (such as internationalized messages, and core APIs).

Next: Manage application dependencies


Found an error in this documentation? The source code for this page can be found here. After reading the documentation guidelines, please feel free to contribute a pull request. Have questions or advice to share? Go to our community forums to start a conversation with the community.