You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ivy-commits@incubator.apache.org by xa...@apache.org on 2007/01/24 15:09:38 UTC

svn commit: r499430 - /incubator/ivy/trunk/doc/doc/ant.html

Author: xavier
Date: Wed Jan 24 07:09:37 2007
New Revision: 499430

URL: http://svn.apache.org/viewvc?view=rev&rev=499430
Log:
FIX: bad image url

Modified:
    incubator/ivy/trunk/doc/doc/ant.html

Modified: incubator/ivy/trunk/doc/doc/ant.html
URL: http://svn.apache.org/viewvc/incubator/ivy/trunk/doc/doc/ant.html?view=diff&rev=499430&r1=499429&r2=499430
==============================================================================
--- incubator/ivy/trunk/doc/doc/ant.html (original)
+++ incubator/ivy/trunk/doc/doc/ant.html Wed Jan 24 07:09:37 2007
@@ -5,7 +5,7 @@
 	<script type="text/javascript" src="../xooki/xooki.js"></script>
 </head>
 <body>
-	<textarea id="xooki-source">
+	<textarea id="xooki-source">
 The main and most frequent way to use ivy is from an ant build file. However, ivy can also be called as a standalone application
 
 If you use ant version <b>1.6.0</b> or superior, you just have to add ivy namespace to your project (<code>xmlns:ivy="antlib:org.apache.ivy.ant"</code> attribute of your project tag), and you can call ivy tasks.
@@ -89,7 +89,7 @@
 It isn't generally necessary to understand this, but it can lead to some issues if you forget to call configure before another task and if the configure step was required in your environment.
 
 <h1>Usual cycle of main tasks</h1>
-<center><img src="/misc/ivy/images/main-tasks.png" /></center>
+<center><img src="../images/main-tasks.png" /></center>
 <h1>Example</h1>
 Here is a more complete example of build file using ivy:
 
@@ -116,11 +116,14 @@
     </target>
 
     <target name="deliver" depends="retrieve-all">
-        <ivy:deliver deliverpattern="distrib/[artifact]-[revision].[ext]" pubrevision="1.1b4" pubdate="20050115123254" status="milestone" />
+        <ivy:deliver deliverpattern="distrib/[artifact]-[revision].[ext]"
+                     pubrevision="1.1b4" pubdate="20050115123254" status="milestone" />
     </target>
 
     <target name="publish" depends="deliver">
-        <ivy:publish resolver="internal" artifactspattern="distrib/[artifact]-[revision].[ext]" pubrevision="1.1b4" />
+        <ivy:publish resolver="internal" 
+                     artifactspattern="distrib/[artifact]-[revision].[ext]" 
+                     pubrevision="1.1b4" />
     </target>
 </project>
 </code>