I have had this problem before...
gradle caches stuff, jars, etc in ~/.gradle
there are times that when I was playing around randomly executing tasks that
it mite mess something up in .gradle
fix:
you need to delete .gradle (this will re-download stuff, your project should be fine)
on linux...
open a terminal and type:
rm -r .gradle
on windows...
navigate to your home folder and delete .gradle
(files/folders starting with a '.' are not hidden on windows)