I am building an yeoman app with an angular-generator.
The js libraries included in my index.html file are:
I was getting the same warning and it was because of the order of the files included, as well as the version used.
To resolve the above warning , I re-included the files in the following order:
jquery.js
jqueryui.js
angular.js
Note: You have to add jquery script tag before angularjs so that angularjs can replace jqLite by jQuery.
Moreover, my code was working with AngularJS v1.2.0, but not with a higher angular version. So check for your jquery and angularjs version compatibility as well.