ScalaStyle 使用等级 return 出错
ScalaStyle using grade return an error
我正在使用 gradle 寻找 scalaStyle。你能解释一下怎么做吗?
我试过 this link,但我得到一个错误:
Error:(110, 0) Could not find method scalaStyle() for arguments
[build_5ig236mubh10t6rxyt8apdkfi$_run_closure4@46b9e954] on root
project .....
这是一个使用 scalaStyle
插件的示例 build.gradle
:
buildscript {
repositories {
maven {
url 'http://jcenter.bintray.com/'
}
}
dependencies {
classpath 'org.github.ngbinh.scalastyle:gradle-scalastyle-plugin_2.11:0.9.0' //version 1.0.0 is not published yet.
}
}
apply plugin: 'scalaStyle'
scalaStyle {
configLocation = '/path/to/scalaStyle.xml'
includeTestSourceDirectory = true
source = 'src/main/scala'
testSource = 'src/test/scala'
}
您需要定义 buildscript
块来声明脚本本身的依赖项。完成后需要应用插件。最后,您可以使用 scalaStyle
块来配置插件的行为。
我正在使用 gradle 寻找 scalaStyle。你能解释一下怎么做吗?
我试过 this link,但我得到一个错误:
Error:(110, 0) Could not find method scalaStyle() for arguments [build_5ig236mubh10t6rxyt8apdkfi$_run_closure4@46b9e954] on root project .....
这是一个使用 scalaStyle
插件的示例 build.gradle
:
buildscript {
repositories {
maven {
url 'http://jcenter.bintray.com/'
}
}
dependencies {
classpath 'org.github.ngbinh.scalastyle:gradle-scalastyle-plugin_2.11:0.9.0' //version 1.0.0 is not published yet.
}
}
apply plugin: 'scalaStyle'
scalaStyle {
configLocation = '/path/to/scalaStyle.xml'
includeTestSourceDirectory = true
source = 'src/main/scala'
testSource = 'src/test/scala'
}
您需要定义 buildscript
块来声明脚本本身的依赖项。完成后需要应用插件。最后,您可以使用 scalaStyle
块来配置插件的行为。