plugins { id 'play' } repositories { jcenter() maven { name "lightbend-maven-release" url "https://repo.lightbend.com/lightbend/maven-releases" } ivy { name "lightbend-ivy-release" url "https://repo.lightbend.com/lightbend/ivy-releases" layout "ivy" } } dependencies { play 'commons-lang:commons-lang:2.6' playTest "com.google.guava:guava:17.0" } // tag::play-custom-distribution[] model { distributions { playBinary { contents { from("README.md") from("scripts") { into "bin" } } } } } // end::play-custom-distribution[]