apply plugin: "base"

task doIt(type: Copy) {
    from projectDir, {
        include "README.md"
    }
    into buildDir
}
