How to resolve/finalize an Ivy file (descriptor) without downloading any artifacts? -


using ivy, i'd run resolve task finalize ivy file dependency versions, not download artifacts.

i see there type attribute on resolve task lets filter artifacts of type:

resolve task

the ivy resolve task not finalize ivy descriptor file.

the ivy deliver task finalizes ivy descriptor file.

running resolve task blank string type atttribute resolves prevents downloading artifact dependencies:

<ivy:resolve type=""/> 

for deliver correctly finalize ivy descriptor file, must call resolve task dependency of deliver task (using ant):

<target name="deliver" depends="resolve">    <ivy:deliver/> </target> <target name="resolve">    <ivy:resolve/> </target> 

calling resolve , deliver tasks separate executions of ant won't work.


Comments

Popular posts from this blog

mysql - FireDac error 314 - but DLLs are in program directory -

git - How to list all releases of public repository with GitHub API V3 -

c++ - Getting C2512 "no default constructor" for `ClassA` error on the first parentheses of constructor for `ClassB`? -