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 ma...@apache.org on 2007/07/08 19:26:17 UTC

svn commit: r554419 - /incubator/ivy/core/trunk/doc/standalone.html

Author: maartenc
Date: Sun Jul  8 12:26:17 2007
New Revision: 554419

URL: http://svn.apache.org/viewvc?view=rev&rev=554419
Log:
Updated the examples to use the new org.apache.ivy package structure

Modified:
    incubator/ivy/core/trunk/doc/standalone.html

Modified: incubator/ivy/core/trunk/doc/standalone.html
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/doc/standalone.html?view=diff&rev=554419&r1=554418&r2=554419
==============================================================================
--- incubator/ivy/core/trunk/doc/standalone.html (original)
+++ incubator/ivy/core/trunk/doc/standalone.html Sun Jul  8 12:26:17 2007
@@ -42,24 +42,24 @@
 
 <h1>Examples</h1>
 <code>
-java fr.jayasoft.ivy.Main
+java org.apache.ivy.Main
 </code>
 calls ivy with default configuration using ivy.xml in the current dir
 <hr/>
 <code>
-java fr.jayasoft.ivy.Main -conf path/to/myivysettings.xml -ivy path/to/myivy.xml
+java org.apache.ivy.Main -conf path/to/myivysettings.xml -ivy path/to/myivy.xml
 </code>
 calls ivy with given ivysettings file using given ivy file
 <hr/>
 <span class="since">since 1.3</span>
 <code>
-java fr.jayasoft.ivy.Main -conf path/to/myivysettings.xml -dependency apache commons-lang 2.0
+java org.apache.ivy.Main -conf path/to/myivysettings.xml -dependency apache commons-lang 2.0
 </code>
 calls ivy with given ivysettings file and resolve apache commons-lang 2.0. 
 
 This is equivalent to:
 <code>
-java fr.jayasoft.ivy.Main -conf path/to/myivysettings.xml -ivy ivy.xml
+java org.apache.ivy.Main -conf path/to/myivysettings.xml -ivy ivy.xml
 </code>
 with ivy.xml like this:
 <code type="xml">
@@ -76,14 +76,14 @@
 <hr/>
 <span class="since">since 1.3</span>
 <code>
-java fr.jayasoft.ivy.Main -conf path/to/myivysettings.xml -ivy path/to/myivy.xml -cachepath mycachefile.txt
+java org.apache.ivy.Main -conf path/to/myivysettings.xml -ivy path/to/myivy.xml -cachepath mycachefile.txt
 </code>
 calls ivy with given ivysettings file and resolve the dependencies found in the given ivy file, and then output the classpath of resolved artifacts in cache in a file. This file can then be used to define a classpath corresponding to all the resolved dependencies for any java program. 
 
 <hr/>
 <span class="since">since 1.4</span>
 <code>
-java fr.jayasoft.ivy.Main -conf path/to/myivysettings.xml -dependency bar foo 2.0 -main org.bar.foo.FooMain
+java org.apache.ivy.Main -conf path/to/myivysettings.xml -dependency bar foo 2.0 -main org.bar.foo.FooMain
 </code>
 calls ivy with given ivysettings file and resolve bar foo 2.0, and then run org.foo.FooMain class with the resolved artifacts as classpath