blob: 14b62190a313d44de2d6c2cf8f995317f1c91ced [file] [log] [blame]
new File(basedir, "target/resolved.txt").eachLine { line ->
if ( line =~ /maven-surefire-plugin/ ){
throw new RuntimeException( "Surefire plugin should be excluded!" )
}
else if ( line =~ /maven-dependency-plugin/ ){
throw new RuntimeException( "Dependency plugin should be excluded!" )
}
}
return true;