Advertisement
koshinae

jdeps in ant ivy

Apr 25th, 2018
283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.69 KB | None | 0 0
  1.     <target name="jdeps" depends="build">
  2.         <echo level="info" message="The webapp depends directly on the following artifacts. You may compare it with the IVY config." />
  3.         <exec executable="jdeps" failifexecutionfails="false">
  4.             <arg value="-s" />
  5.             <arg value="-apionly" />
  6.             <arg value="-cp" />
  7.             <arg pathref="runtime.ivypath" />
  8.             <arg value="-cp" />
  9.             <arg pathref="compile.ivypath" />
  10.             <arg value="-cp" />
  11.             <arg pathref="test.ivypath" />
  12.             <!-- Last ones: -->
  13.             <arg value="${classes.dir}" />
  14.             <arg value="${testClasses.dir}" />
  15.         </exec>
  16.     </target>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement