java - How does gradle-eclipse plugin deal with dependsOn -
how gradle eclipse plugin figure constructs below
compilejava.dependson xjc
gradle-eclipse plugin doesn't special gradle constructs. you'd able open gradle tasks view , run 'xjc' or 'compilejava' task. can add 'compilejava' or other project tasks run after import in gradle import wizard , have task running every time gradle project refreshed (right-click on project -> gradle -> refresh all). whenever build project in eclipse jdt compilejava task not running if asking... you'd have start manually somehow.
Comments
Post a Comment