我想使用Gradle 3.1
和Gradle play plugin
。我必須添加一個任務。gradle play插件屬性testClassesDirs在gradle中丟失3.1
你能幫我解下從代碼4.0
到3.1
的片段嗎? 在搖籃3.1我找不到類似的屬性testClassesDirs
task doesNotWorkIn3_1(type: Test) {
dependsOn { tasks.compilePlayBinaryTests }
testClassesDirs = project.files { [tasks.compilePlayBinaryTests.destinationDir] }
classpath = project.files { testPlayBinary.classpath }
include '**/SwaggerControllerJsonTest.class'
outputs.upToDateWhen { false }
}
感謝您的回覆正常,但它並沒有幫助。我提供了我自己的答案 – Sergey
@Sergey我沒有看到你的答案和我的區別,錯誤是什麼? – chenrui
此外,我認爲你自己的答案不同於你原來的問題(從文件夾的角度來看)。 – chenrui