Offline mode
EasyAnt cames with offline mode support. This feature is designed to bring all resources of your build offline. It includes :- project dependencies (including transitive ones)
- buildtype used by the project
- plugins used by the project
Once your resources are ready to be used offline you can tell easyant you're offline by using --offline switch (or -o in shorter form).
> easyant --offlineOr
> easyant -oThis can also be done by setting "easyant.offline" property to true either on the command line or in your module.ivy.
Example using property on the command line :
> easyant -Deasyant.offline=trueExample using property in your module.ivy file :
<ea:property name="easyant.offline" value="true"/>