$ mkdir SparkGroovyExample $ cd SparkGroovyExample $ gradle init --type groovy-library build.gradleを編集。 dependenciesにsparkを追加。 "gradlew run"が使いたかったので、applicationプラグインを追加し、mainClassNameを指定している。 apply plugin: 'groovy' apply plugin: 'application' mainClassName = 'ExampleService' // パッケージ名も必要に応じて指定 foo.bar.ExampleService等 repositories { jcenter() } dependencies { compile 'org.codehaus.groovy:groovy-al