diff --git a/build.gradle b/build.gradle index 89db734a..5f20639e 100644 --- a/build.gradle +++ b/build.gradle @@ -43,7 +43,7 @@ allprojects { println "projectDir : " + projectDir println "groupId : " + project.group println "buildDir : " + buildDir - println "targetCompatibility : " + rootProject.targetCompatibility + println "targetCompatibility : " + java.targetCompatibility println "=" * 80 } } diff --git a/htmlSanityCheck-core/build.gradle b/htmlSanityCheck-core/build.gradle index 6255ef7a..3462ec86 100644 --- a/htmlSanityCheck-core/build.gradle +++ b/htmlSanityCheck-core/build.gradle @@ -19,7 +19,7 @@ dependencies { apply plugin: 'groovy' -task copyResourceImages(type: Copy) { +tasks.register('copyResourceImages', Copy) { from('src/main/resources') { include '**/*.png' }