1

プロジェクトで作成した一時ファイルを削除しようとしています。次のビルドファイルを使用しました

apply plugin: 'java'
apply from: 'https://github.com/valkolovos/gradle_cobertura/raw/master/repo/gradle_cobertura/gradle_cobertura/1.0/coberturainit.gradle'

sourceCompatibility = 1.6

dependencies {
    testCompile group: 'junit', name: 'junit', version: "4.+" 
}

repositories {
    mavenCentral()
}

task deleteStuff(type: Delete) {
    delete 'testfile.txt'
}

defaultTasks 'cobertura'

しかし、testfile.txtは削除されません。何か足りないものはありますか?

4

0 に答える 0