Tutorial by Examples

Create a file named SCALA_PROJECT/build.gradle with these contents: group 'scala_gradle' version '1.0-SNAPSHOT' apply plugin: 'scala' repositories { jcenter() mavenCentral() maven { url "https://repo.typesafe.com/typesafe/maven-releases" } } dep...
After going through the Basic Setup example, you may find yourself repeating most part of it in every single Scala Gradle project. Smells like boilerplate code... What if, instead of applying the Scala plugin offered by Gradle, you could apply your own Scala plugin, which would be responsible for h...

Page 1 of 1