仪器社区

如何在 gradle 中运行 groovy 的 主类以及测试类

哟yo卡Ki 2016-12-15
评论
全部评论
我执迷你
下面是配置范例 build.gradle:
apply plugin: 'groovy'

repositories {
mavenLocal()
mavenCentral()
}

dependencies {
compile 'org.codehaus.groovy:groovy-all:2.3.7'
compile 'org.apache.ant:ant:1.9.4'
testCompile 'junit:junit:4.11'
testCompile 'commons-io:commons-io:2.2'

}

sourceSets {
main {
groovy {
srcDirs = ['./src/main/groovy']
include 'Main.groovy'
17 0 2016-12-16 0条评论 回复
您可能感兴趣的社区主题
加载中...
发布 评论