You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by ja...@apache.org on 2018/12/23 13:28:58 UTC

svn commit: r1849619 [2/2] - in /ant/site/ivy/production: ./ history/2.4.0/ history/2.4.0/dev/ history/2.4.0/settings/ history/2.4.0/tutorial/ history/2.5.0-rc1/ history/2.5.0-rc1/dev/ history/2.5.0-rc1/settings/ history/2.5.0-rc1/tutorial/ history/lat...

Modified: ant/site/ivy/production/history/latest-milestone/book.html
URL: http://svn.apache.org/viewvc/ant/site/ivy/production/history/latest-milestone/book.html?rev=1849619&r1=1849618&r2=1849619&view=diff
==============================================================================
--- ant/site/ivy/production/history/latest-milestone/book.html (original)
+++ ant/site/ivy/production/history/latest-milestone/book.html Sun Dec 23 13:28:57 2018
@@ -1220,7 +1220,7 @@ configurability, and tight integration w
 <p>If you have any trouble, check our <a href="https://ant.apache.org/ivy/faq.html">FAQ</a>.</p>
 </div>
 <div class="paragraph">
-<p>OK, you&#8217;ve just seen how easy it is to take your first step with Ivy. Go ahead with the other tutorials, but before you do, make sure you have properly <a href="install.html">installed</a> Ivy and downloaded the tutorials sources (included in all Ivy distributions, in the <a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=tree;f=src/example">src/example</a> directory).</p>
+<p>OK, you&#8217;ve just seen how easy it is to take your first step with Ivy. Go ahead with the other tutorials, but before you do, make sure you have properly <a href="install.html">installed</a> Ivy and downloaded the tutorials sources (included in all Ivy distributions, in the <a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=tree;f=src/example">src/example</a> directory).</p>
 </div>
 </div>
 </div>
@@ -2499,7 +2499,7 @@ give access to all other modules feature
 <div class="ulist">
 <ul>
 <li>
-<p><a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/example/multi-project/build.xml">build.xml</a><br/>
+<p><a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/example/multi-project/build.xml">build.xml</a><br/>
 This is a root build file which can be used to call targets on all modules, in the order of their dependencies (ensuring that a module is always built before any module depending on it, for instance)</p>
 </li>
 <li>
@@ -2507,10 +2507,10 @@ This is a root build file which can be u
 <div class="ulist">
 <ul>
 <li>
-<p><a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/example/multi-project/common/common.xml">common.xml</a> the common build file imported by all build.xml files for each project. This build defines the targets which can be used in all projects.</p>
+<p><a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/example/multi-project/common/common.xml">common.xml</a> the common build file imported by all build.xml files for each project. This build defines the targets which can be used in all projects.</p>
 </li>
 <li>
-<p><a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/example/multi-project/common/build.properties">build.properties</a> some properties common to all projects</p>
+<p><a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/example/multi-project/common/build.properties">build.properties</a> some properties common to all projects</p>
 </li>
 </ul>
 </div>
@@ -3036,7 +3036,7 @@ Default target: basic</code></pre>
 </div>
 </div>
 <div class="paragraph">
-<p>This project is accessible in the <a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=tree;f=src/example/build-a-ivy-repository">src/example/build-a-ivy-repository</a></p>
+<p>This project is accessible in the <a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=tree;f=src/example/build-a-ivy-repository">src/example/build-a-ivy-repository</a></p>
 </div>
 <div class="paragraph">
 <p>Next steps:<br/>
@@ -4849,7 +4849,7 @@ You can now run the build, if it is succ
 </div>
 </div>
 <div class="paragraph">
-<p>Then the only thing to do is to add the init-ivy target in the depends attribute of your targets using Ivy, and add the ivy namespace to your build script. See the self contained <a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/example/go-ivy/build.xml">go-ivy</a> example for details about this.</p>
+<p>Then the only thing to do is to add the init-ivy target in the depends attribute of your targets using Ivy, and add the ivy namespace to your build script. See the self contained <a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/example/go-ivy/build.xml">go-ivy</a> example for details about this.</p>
 </div>
 </div>
 </div>
@@ -10425,7 +10425,7 @@ You can greatly improve the performance
 <div class="ulist">
 <ul>
 <li>
-<p>a log report outputter (<a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/java/org/apache/ivy/plugins/report/LogReportOutputter.java">LogReportOutputter</a>)<br/>
+<p>a log report outputter (<a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/java/org/apache/ivy/plugins/report/LogReportOutputter.java">LogReportOutputter</a>)<br/>
 which produces the output on the console at the end of the resolve, which looks like this:</p>
 </li>
 </ul>
@@ -10443,7 +10443,7 @@ which produces the output on the console
 <div class="ulist">
 <ul>
 <li>
-<p>an xml report outputter (<a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/java/org/apache/ivy/plugins/report/XmlReportOutputter.java">XmlReportOutputter</a>)<br/>
+<p>an xml report outputter (<a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/java/org/apache/ivy/plugins/report/XmlReportOutputter.java">XmlReportOutputter</a>)<br/>
 which produces an XML report in the cache, which is mandatory for correct Ivy behaviour, since it&#8217;s that report which is used when you do a post resolve step in a separate build from the resolve itself. It&#8217;s also this XML report which is processed to generate all the different reports available in the <a href="../use/report.html">report</a> task.</p>
 </li>
 </ul>
@@ -14482,7 +14482,7 @@ specifying a fixed revision list, in whi
 </div>
 </div>
 <div class="paragraph">
-<p><em>Note</em>: the tasks listed above are non exhaustive. For a complete list of tasks with the corresponding classes, see the <a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/java/org/apache/ivy/ant/antlib.xml">antlib.xml</a> file in Git repository or the jar file you use.</p>
+<p><em>Note</em>: the tasks listed above are non exhaustive. For a complete list of tasks with the corresponding classes, see the <a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/java/org/apache/ivy/ant/antlib.xml">antlib.xml</a> file in Git repository or the jar file you use.</p>
 </div>
 <div class="paragraph">
 <p>Then you can use the tasks, but check their name, following samples assume you use the Ivy namespace (ivy:xxx tasks), whereas with Ant 1.5 you cannot use namespace, and should therefore use ivy-xxx tasks if you have added the taskdefs as above.</p>
@@ -14563,7 +14563,7 @@ ivy.checksums=sha1,md5</code></pre>
 </div>
 </div>
 <div class="paragraph">
-<p><em>For the latest version of these properties, you can check the <a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/java/org/apache/ivy/core/settings/ivy.properties">Git version</a>.</em></p>
+<p><em>For the latest version of these properties, you can check the <a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/java/org/apache/ivy/core/settings/ivy.properties">Git version</a>.</em></p>
 </div>
 <div class="paragraph">
 <p>(<strong><em>since 2.0</em></strong>) After calling the first Ivy task, the property <code>ivy.version</code> will be available and contains the version of the used Ivy library.</p>
@@ -20290,7 +20290,7 @@ If you use this plugin, you will see man
 <p>All Ivy plug-ins use the same code patterns as Ant specific tasks for parameters. This means that if you want to have a <code>myattribute</code> of type <code>String</code>, you just have to declare a method called <code>setMyattribute(String val)</code> on your plug-in. The same applies to child tags, you just have to follow Ant specifications.</p>
 </div>
 <div class="paragraph">
-<p>All pluggable code in Ivy is located in the <a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=tree;f=src/java/org/apache/ivy/plugins">org.apache.ivy.plugins</a> package. In each package you will find an interface that you must implement to provide a new plugin. We usually also provide an abstract class easing the implementation and making your code more independent of interface changes. We heavily recommend using these abstract classes as a base class.</p>
+<p>All pluggable code in Ivy is located in the <a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=tree;f=src/java/org/apache/ivy/plugins">org.apache.ivy.plugins</a> package. In each package you will find an interface that you must implement to provide a new plugin. We usually also provide an abstract class easing the implementation and making your code more independent of interface changes. We heavily recommend using these abstract classes as a base class.</p>
 </div>
 <div class="paragraph">
 <p>To understand how your implementation can be done, we suggest looking at existing implementations we provide, it&#8217;s the best way to get started.</p>
@@ -20505,7 +20505,7 @@ Use the right version number for the tag
 
 I have built a release candidate for Ivy ${version}
 
-The svn tag of this release is: https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=tag;h=refs/tags/${version}
+The svn tag of this release is: https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=tag;h=refs/tags/${version}
 
 The artifacts has been published to: https://dist.apache.org/repos/dist/dev/ant/ivy/${version} at revision ${svn-rev-of-the-check-in}
 

Modified: ant/site/ivy/production/history/latest-milestone/dev/makerelease.html
URL: http://svn.apache.org/viewvc/ant/site/ivy/production/history/latest-milestone/dev/makerelease.html?rev=1849619&r1=1849618&r2=1849619&view=diff
==============================================================================
--- ant/site/ivy/production/history/latest-milestone/dev/makerelease.html (original)
+++ ant/site/ivy/production/history/latest-milestone/dev/makerelease.html Sun Dec 23 13:28:57 2018
@@ -411,7 +411,7 @@ Use the right version number for the tag
 
 I have built a release candidate for Ivy ${version}
 
-The svn tag of this release is: https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=tag;h=refs/tags/${version}
+The svn tag of this release is: https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=tag;h=refs/tags/${version}
 
 The artifacts has been published to: https://dist.apache.org/repos/dist/dev/ant/ivy/${version} at revision ${svn-rev-of-the-check-in}
 

Modified: ant/site/ivy/production/history/latest-milestone/extend.html
URL: http://svn.apache.org/viewvc/ant/site/ivy/production/history/latest-milestone/extend.html?rev=1849619&r1=1849618&r2=1849619&view=diff
==============================================================================
--- ant/site/ivy/production/history/latest-milestone/extend.html (original)
+++ ant/site/ivy/production/history/latest-milestone/extend.html Sun Dec 23 13:28:57 2018
@@ -256,7 +256,7 @@ hljs.initHighlightingOnLoad();</script><
 <p>All Ivy plug-ins use the same code patterns as Ant specific tasks for parameters. This means that if you want to have a <code>myattribute</code> of type <code>String</code>, you just have to declare a method called <code>setMyattribute(String val)</code> on your plug-in. The same applies to child tags, you just have to follow Ant specifications.</p>
 </div>
 <div class="paragraph">
-<p>All pluggable code in Ivy is located in the <a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=tree;f=src/java/org/apache/ivy/plugins">org.apache.ivy.plugins</a> package. In each package you will find an interface that you must implement to provide a new plugin. We usually also provide an abstract class easing the implementation and making your code more independent of interface changes. We heavily recommend using these abstract classes as a base class.</p>
+<p>All pluggable code in Ivy is located in the <a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=tree;f=src/java/org/apache/ivy/plugins">org.apache.ivy.plugins</a> package. In each package you will find an interface that you must implement to provide a new plugin. We usually also provide an abstract class easing the implementation and making your code more independent of interface changes. We heavily recommend using these abstract classes as a base class.</p>
 </div>
 <div class="paragraph">
 <p>To understand how your implementation can be done, we suggest looking at existing implementations we provide, it&#8217;s the best way to get started.</p>

Modified: ant/site/ivy/production/history/latest-milestone/install.html
URL: http://svn.apache.org/viewvc/ant/site/ivy/production/history/latest-milestone/install.html?rev=1849619&r1=1849618&r2=1849619&view=diff
==============================================================================
--- ant/site/ivy/production/history/latest-milestone/install.html (original)
+++ ant/site/ivy/production/history/latest-milestone/install.html Sun Dec 23 13:28:57 2018
@@ -302,7 +302,7 @@ You can now run the build, if it is succ
 </div>
 </div>
 <div class="paragraph">
-<p>Then the only thing to do is to add the init-ivy target in the depends attribute of your targets using Ivy, and add the ivy namespace to your build script. See the self contained <a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/example/go-ivy/build.xml">go-ivy</a> example for details about this.</p>
+<p>Then the only thing to do is to add the init-ivy target in the depends attribute of your targets using Ivy, and add the ivy namespace to your build script. See the self contained <a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/example/go-ivy/build.xml">go-ivy</a> example for details about this.</p>
 </div>
 </div>
 </div></div></div></td></tr></table><table id="footer-menu" summary="Navigation elements." border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td align="center" valign="middle"><div class="primary-links">::<a href="index.html">Home</a>::<a href="reference.html">Reference</a>::<a href="tutorial.html">Tutorials</a>::<a href="dev.html">Developer's doc</a>::</div></td></tr></table><div id="footer-message" class="footer"><hr /><i>Copyright &copy; 2007 - 2018 The Apache Software Foundation, Licensed under the<a href="http://www.apache.org/licenses/">Apache License, Version 2.0</a>.</i><br /><i>Apache Ivy, Apache Ant, Ivy, Ant, Apache, the Apache Ivy logo, the Apache Ant logo and the Apache feather logo are trademarks of The Apache Software Foundation.</i><br /><i>All other marks mentioned may be trademarks or registered trademarks of their respective owners.</i></div></div></body></html>
\ No newline at end of file

Modified: ant/site/ivy/production/history/latest-milestone/settings/outputters.html
URL: http://svn.apache.org/viewvc/ant/site/ivy/production/history/latest-milestone/settings/outputters.html?rev=1849619&r1=1849618&r2=1849619&view=diff
==============================================================================
--- ant/site/ivy/production/history/latest-milestone/settings/outputters.html (original)
+++ ant/site/ivy/production/history/latest-milestone/settings/outputters.html Sun Dec 23 13:28:57 2018
@@ -226,7 +226,7 @@ hljs.initHighlightingOnLoad();</script><
 <div class="ulist">
 <ul>
 <li>
-<p>a log report outputter (<a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/java/org/apache/ivy/plugins/report/LogReportOutputter.java">LogReportOutputter</a>)<br/>
+<p>a log report outputter (<a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/java/org/apache/ivy/plugins/report/LogReportOutputter.java">LogReportOutputter</a>)<br/>
 which produces the output on the console at the end of the resolve, which looks like this:</p>
 </li>
 </ul>
@@ -244,7 +244,7 @@ which produces the output on the console
 <div class="ulist">
 <ul>
 <li>
-<p>an xml report outputter (<a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/java/org/apache/ivy/plugins/report/XmlReportOutputter.java">XmlReportOutputter</a>)<br/>
+<p>an xml report outputter (<a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/java/org/apache/ivy/plugins/report/XmlReportOutputter.java">XmlReportOutputter</a>)<br/>
 which produces an XML report in the cache, which is mandatory for correct Ivy behaviour, since it&#8217;s that report which is used when you do a post resolve step in a separate build from the resolve itself. It&#8217;s also this XML report which is processed to generate all the different reports available in the <a href="../use/report.html">report</a> task.</p>
 </li>
 </ul>

Modified: ant/site/ivy/production/history/latest-milestone/tutorial.html
URL: http://svn.apache.org/viewvc/ant/site/ivy/production/history/latest-milestone/tutorial.html?rev=1849619&r1=1849618&r2=1849619&view=diff
==============================================================================
--- ant/site/ivy/production/history/latest-milestone/tutorial.html (original)
+++ ant/site/ivy/production/history/latest-milestone/tutorial.html Sun Dec 23 13:28:57 2018
@@ -239,7 +239,7 @@ hljs.initHighlightingOnLoad();</script><
 <p>If you have any trouble, check our <a href="https://ant.apache.org/ivy/faq.html">FAQ</a>.</p>
 </div>
 <div class="paragraph">
-<p>OK, you&#8217;ve just seen how easy it is to take your first step with Ivy. Go ahead with the other tutorials, but before you do, make sure you have properly <a href="install.html">installed</a> Ivy and downloaded the tutorials sources (included in all Ivy distributions, in the <a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=tree;f=src/example">src/example</a> directory).</p>
+<p>OK, you&#8217;ve just seen how easy it is to take your first step with Ivy. Go ahead with the other tutorials, but before you do, make sure you have properly <a href="install.html">installed</a> Ivy and downloaded the tutorials sources (included in all Ivy distributions, in the <a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=tree;f=src/example">src/example</a> directory).</p>
 </div>
 </div>
 </div>

Modified: ant/site/ivy/production/history/latest-milestone/tutorial/build-repository.html
URL: http://svn.apache.org/viewvc/ant/site/ivy/production/history/latest-milestone/tutorial/build-repository.html?rev=1849619&r1=1849618&r2=1849619&view=diff
==============================================================================
--- ant/site/ivy/production/history/latest-milestone/tutorial/build-repository.html (original)
+++ ant/site/ivy/production/history/latest-milestone/tutorial/build-repository.html Sun Dec 23 13:28:57 2018
@@ -244,7 +244,7 @@ Default target: basic</code></pre>
 </div>
 </div>
 <div class="paragraph">
-<p>This project is accessible in the <a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=tree;f=src/example/build-a-ivy-repository">src/example/build-a-ivy-repository</a></p>
+<p>This project is accessible in the <a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=tree;f=src/example/build-a-ivy-repository">src/example/build-a-ivy-repository</a></p>
 </div>
 <div class="paragraph">
 <p>Next steps:<br/>

Modified: ant/site/ivy/production/history/latest-milestone/tutorial/multiproject.html
URL: http://svn.apache.org/viewvc/ant/site/ivy/production/history/latest-milestone/tutorial/multiproject.html?rev=1849619&r1=1849618&r2=1849619&view=diff
==============================================================================
--- ant/site/ivy/production/history/latest-milestone/tutorial/multiproject.html (original)
+++ ant/site/ivy/production/history/latest-milestone/tutorial/multiproject.html Sun Dec 23 13:28:57 2018
@@ -283,7 +283,7 @@ give access to all other modules feature
 <div class="ulist">
 <ul>
 <li>
-<p><a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/example/multi-project/build.xml">build.xml</a><br/>
+<p><a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/example/multi-project/build.xml">build.xml</a><br/>
 This is a root build file which can be used to call targets on all modules, in the order of their dependencies (ensuring that a module is always built before any module depending on it, for instance)</p>
 </li>
 <li>
@@ -291,10 +291,10 @@ This is a root build file which can be u
 <div class="ulist">
 <ul>
 <li>
-<p><a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/example/multi-project/common/common.xml">common.xml</a> the common build file imported by all build.xml files for each project. This build defines the targets which can be used in all projects.</p>
+<p><a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/example/multi-project/common/common.xml">common.xml</a> the common build file imported by all build.xml files for each project. This build defines the targets which can be used in all projects.</p>
 </li>
 <li>
-<p><a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/example/multi-project/common/build.properties">build.properties</a> some properties common to all projects</p>
+<p><a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/example/multi-project/common/build.properties">build.properties</a> some properties common to all projects</p>
 </li>
 </ul>
 </div>

Modified: ant/site/ivy/production/history/master/ant.html
URL: http://svn.apache.org/viewvc/ant/site/ivy/production/history/master/ant.html?rev=1849619&r1=1849618&r2=1849619&view=diff
==============================================================================
--- ant/site/ivy/production/history/master/ant.html (original)
+++ ant/site/ivy/production/history/master/ant.html Sun Dec 23 13:28:57 2018
@@ -243,7 +243,7 @@ hljs.initHighlightingOnLoad();</script><
 </div>
 </div>
 <div class="paragraph">
-<p><em>Note</em>: the tasks listed above are non exhaustive. For a complete list of tasks with the corresponding classes, see the <a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/java/org/apache/ivy/ant/antlib.xml">antlib.xml</a> file in Git repository or the jar file you use.</p>
+<p><em>Note</em>: the tasks listed above are non exhaustive. For a complete list of tasks with the corresponding classes, see the <a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/java/org/apache/ivy/ant/antlib.xml">antlib.xml</a> file in Git repository or the jar file you use.</p>
 </div>
 <div class="paragraph">
 <p>Then you can use the tasks, but check their name, following samples assume you use the Ivy namespace (ivy:xxx tasks), whereas with Ant 1.5 you cannot use namespace, and should therefore use ivy-xxx tasks if you have added the taskdefs as above.</p>
@@ -322,7 +322,7 @@ ivy.checksums=sha1,md5</code></pre>
 </div>
 </div>
 <div class="paragraph">
-<p><em>For the latest version of these properties, you can check the <a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/java/org/apache/ivy/core/settings/ivy.properties">Git version</a>.</em></p>
+<p><em>For the latest version of these properties, you can check the <a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/java/org/apache/ivy/core/settings/ivy.properties">Git version</a>.</em></p>
 </div>
 <div class="paragraph">
 <p>(<strong><em>since 2.0</em></strong>) After calling the first Ivy task, the property <code>ivy.version</code> will be available and contains the version of the used Ivy library.</p>

Modified: ant/site/ivy/production/history/master/book.html
URL: http://svn.apache.org/viewvc/ant/site/ivy/production/history/master/book.html?rev=1849619&r1=1849618&r2=1849619&view=diff
==============================================================================
--- ant/site/ivy/production/history/master/book.html (original)
+++ ant/site/ivy/production/history/master/book.html Sun Dec 23 13:28:57 2018
@@ -1220,7 +1220,7 @@ configurability, and tight integration w
 <p>If you have any trouble, check our <a href="https://ant.apache.org/ivy/faq.html">FAQ</a>.</p>
 </div>
 <div class="paragraph">
-<p>OK, you&#8217;ve just seen how easy it is to take your first step with Ivy. Go ahead with the other tutorials, but before you do, make sure you have properly <a href="install.html">installed</a> Ivy and downloaded the tutorials sources (included in all Ivy distributions, in the <a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=tree;f=src/example">src/example</a> directory).</p>
+<p>OK, you&#8217;ve just seen how easy it is to take your first step with Ivy. Go ahead with the other tutorials, but before you do, make sure you have properly <a href="install.html">installed</a> Ivy and downloaded the tutorials sources (included in all Ivy distributions, in the <a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=tree;f=src/example">src/example</a> directory).</p>
 </div>
 </div>
 </div>
@@ -2499,7 +2499,7 @@ give access to all other modules feature
 <div class="ulist">
 <ul>
 <li>
-<p><a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/example/multi-project/build.xml">build.xml</a><br/>
+<p><a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/example/multi-project/build.xml">build.xml</a><br/>
 This is a root build file which can be used to call targets on all modules, in the order of their dependencies (ensuring that a module is always built before any module depending on it, for instance)</p>
 </li>
 <li>
@@ -2507,10 +2507,10 @@ This is a root build file which can be u
 <div class="ulist">
 <ul>
 <li>
-<p><a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/example/multi-project/common/common.xml">common.xml</a> the common build file imported by all build.xml files for each project. This build defines the targets which can be used in all projects.</p>
+<p><a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/example/multi-project/common/common.xml">common.xml</a> the common build file imported by all build.xml files for each project. This build defines the targets which can be used in all projects.</p>
 </li>
 <li>
-<p><a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/example/multi-project/common/build.properties">build.properties</a> some properties common to all projects</p>
+<p><a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/example/multi-project/common/build.properties">build.properties</a> some properties common to all projects</p>
 </li>
 </ul>
 </div>
@@ -3036,7 +3036,7 @@ Default target: basic</code></pre>
 </div>
 </div>
 <div class="paragraph">
-<p>This project is accessible in the <a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=tree;f=src/example/build-a-ivy-repository">src/example/build-a-ivy-repository</a></p>
+<p>This project is accessible in the <a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=tree;f=src/example/build-a-ivy-repository">src/example/build-a-ivy-repository</a></p>
 </div>
 <div class="paragraph">
 <p>Next steps:<br/>
@@ -4849,7 +4849,7 @@ You can now run the build, if it is succ
 </div>
 </div>
 <div class="paragraph">
-<p>Then the only thing to do is to add the init-ivy target in the depends attribute of your targets using Ivy, and add the ivy namespace to your build script. See the self contained <a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/example/go-ivy/build.xml">go-ivy</a> example for details about this.</p>
+<p>Then the only thing to do is to add the init-ivy target in the depends attribute of your targets using Ivy, and add the ivy namespace to your build script. See the self contained <a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/example/go-ivy/build.xml">go-ivy</a> example for details about this.</p>
 </div>
 </div>
 </div>
@@ -10425,7 +10425,7 @@ You can greatly improve the performance
 <div class="ulist">
 <ul>
 <li>
-<p>a log report outputter (<a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/java/org/apache/ivy/plugins/report/LogReportOutputter.java">LogReportOutputter</a>)<br/>
+<p>a log report outputter (<a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/java/org/apache/ivy/plugins/report/LogReportOutputter.java">LogReportOutputter</a>)<br/>
 which produces the output on the console at the end of the resolve, which looks like this:</p>
 </li>
 </ul>
@@ -10443,7 +10443,7 @@ which produces the output on the console
 <div class="ulist">
 <ul>
 <li>
-<p>an xml report outputter (<a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/java/org/apache/ivy/plugins/report/XmlReportOutputter.java">XmlReportOutputter</a>)<br/>
+<p>an xml report outputter (<a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/java/org/apache/ivy/plugins/report/XmlReportOutputter.java">XmlReportOutputter</a>)<br/>
 which produces an XML report in the cache, which is mandatory for correct Ivy behaviour, since it&#8217;s that report which is used when you do a post resolve step in a separate build from the resolve itself. It&#8217;s also this XML report which is processed to generate all the different reports available in the <a href="../use/report.html">report</a> task.</p>
 </li>
 </ul>
@@ -14482,7 +14482,7 @@ specifying a fixed revision list, in whi
 </div>
 </div>
 <div class="paragraph">
-<p><em>Note</em>: the tasks listed above are non exhaustive. For a complete list of tasks with the corresponding classes, see the <a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/java/org/apache/ivy/ant/antlib.xml">antlib.xml</a> file in Git repository or the jar file you use.</p>
+<p><em>Note</em>: the tasks listed above are non exhaustive. For a complete list of tasks with the corresponding classes, see the <a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/java/org/apache/ivy/ant/antlib.xml">antlib.xml</a> file in Git repository or the jar file you use.</p>
 </div>
 <div class="paragraph">
 <p>Then you can use the tasks, but check their name, following samples assume you use the Ivy namespace (ivy:xxx tasks), whereas with Ant 1.5 you cannot use namespace, and should therefore use ivy-xxx tasks if you have added the taskdefs as above.</p>
@@ -14563,7 +14563,7 @@ ivy.checksums=sha1,md5</code></pre>
 </div>
 </div>
 <div class="paragraph">
-<p><em>For the latest version of these properties, you can check the <a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/java/org/apache/ivy/core/settings/ivy.properties">Git version</a>.</em></p>
+<p><em>For the latest version of these properties, you can check the <a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/java/org/apache/ivy/core/settings/ivy.properties">Git version</a>.</em></p>
 </div>
 <div class="paragraph">
 <p>(<strong><em>since 2.0</em></strong>) After calling the first Ivy task, the property <code>ivy.version</code> will be available and contains the version of the used Ivy library.</p>
@@ -20290,7 +20290,7 @@ If you use this plugin, you will see man
 <p>All Ivy plug-ins use the same code patterns as Ant specific tasks for parameters. This means that if you want to have a <code>myattribute</code> of type <code>String</code>, you just have to declare a method called <code>setMyattribute(String val)</code> on your plug-in. The same applies to child tags, you just have to follow Ant specifications.</p>
 </div>
 <div class="paragraph">
-<p>All pluggable code in Ivy is located in the <a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=tree;f=src/java/org/apache/ivy/plugins">org.apache.ivy.plugins</a> package. In each package you will find an interface that you must implement to provide a new plugin. We usually also provide an abstract class easing the implementation and making your code more independent of interface changes. We heavily recommend using these abstract classes as a base class.</p>
+<p>All pluggable code in Ivy is located in the <a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=tree;f=src/java/org/apache/ivy/plugins">org.apache.ivy.plugins</a> package. In each package you will find an interface that you must implement to provide a new plugin. We usually also provide an abstract class easing the implementation and making your code more independent of interface changes. We heavily recommend using these abstract classes as a base class.</p>
 </div>
 <div class="paragraph">
 <p>To understand how your implementation can be done, we suggest looking at existing implementations we provide, it&#8217;s the best way to get started.</p>
@@ -20505,7 +20505,7 @@ Use the right version number for the tag
 
 I have built a release candidate for Ivy ${version}
 
-The git tag of this release is: https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=tag;h=refs/tags/${version} with the sha1 ${githash-of-tag}
+The git tag of this release is: https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=tag;h=refs/tags/${version} with the sha1 ${githash-of-tag}
 
 The artifacts has been published to: https://dist.apache.org/repos/dist/dev/ant/ivy/${version} at revision ${svn-rev-of-the-check-in}
 

Modified: ant/site/ivy/production/history/master/dev/makerelease.html
URL: http://svn.apache.org/viewvc/ant/site/ivy/production/history/master/dev/makerelease.html?rev=1849619&r1=1849618&r2=1849619&view=diff
==============================================================================
--- ant/site/ivy/production/history/master/dev/makerelease.html (original)
+++ ant/site/ivy/production/history/master/dev/makerelease.html Sun Dec 23 13:28:57 2018
@@ -411,7 +411,7 @@ Use the right version number for the tag
 
 I have built a release candidate for Ivy ${version}
 
-The git tag of this release is: https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=tag;h=refs/tags/${version} with the sha1 ${githash-of-tag}
+The git tag of this release is: https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=tag;h=refs/tags/${version} with the sha1 ${githash-of-tag}
 
 The artifacts has been published to: https://dist.apache.org/repos/dist/dev/ant/ivy/${version} at revision ${svn-rev-of-the-check-in}
 

Modified: ant/site/ivy/production/history/master/extend.html
URL: http://svn.apache.org/viewvc/ant/site/ivy/production/history/master/extend.html?rev=1849619&r1=1849618&r2=1849619&view=diff
==============================================================================
--- ant/site/ivy/production/history/master/extend.html (original)
+++ ant/site/ivy/production/history/master/extend.html Sun Dec 23 13:28:57 2018
@@ -256,7 +256,7 @@ hljs.initHighlightingOnLoad();</script><
 <p>All Ivy plug-ins use the same code patterns as Ant specific tasks for parameters. This means that if you want to have a <code>myattribute</code> of type <code>String</code>, you just have to declare a method called <code>setMyattribute(String val)</code> on your plug-in. The same applies to child tags, you just have to follow Ant specifications.</p>
 </div>
 <div class="paragraph">
-<p>All pluggable code in Ivy is located in the <a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=tree;f=src/java/org/apache/ivy/plugins">org.apache.ivy.plugins</a> package. In each package you will find an interface that you must implement to provide a new plugin. We usually also provide an abstract class easing the implementation and making your code more independent of interface changes. We heavily recommend using these abstract classes as a base class.</p>
+<p>All pluggable code in Ivy is located in the <a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=tree;f=src/java/org/apache/ivy/plugins">org.apache.ivy.plugins</a> package. In each package you will find an interface that you must implement to provide a new plugin. We usually also provide an abstract class easing the implementation and making your code more independent of interface changes. We heavily recommend using these abstract classes as a base class.</p>
 </div>
 <div class="paragraph">
 <p>To understand how your implementation can be done, we suggest looking at existing implementations we provide, it&#8217;s the best way to get started.</p>

Modified: ant/site/ivy/production/history/master/install.html
URL: http://svn.apache.org/viewvc/ant/site/ivy/production/history/master/install.html?rev=1849619&r1=1849618&r2=1849619&view=diff
==============================================================================
--- ant/site/ivy/production/history/master/install.html (original)
+++ ant/site/ivy/production/history/master/install.html Sun Dec 23 13:28:57 2018
@@ -302,7 +302,7 @@ You can now run the build, if it is succ
 </div>
 </div>
 <div class="paragraph">
-<p>Then the only thing to do is to add the init-ivy target in the depends attribute of your targets using Ivy, and add the ivy namespace to your build script. See the self contained <a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/example/go-ivy/build.xml">go-ivy</a> example for details about this.</p>
+<p>Then the only thing to do is to add the init-ivy target in the depends attribute of your targets using Ivy, and add the ivy namespace to your build script. See the self contained <a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/example/go-ivy/build.xml">go-ivy</a> example for details about this.</p>
 </div>
 </div>
 </div></div></div></td></tr></table><table id="footer-menu" summary="Navigation elements." border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td align="center" valign="middle"><div class="primary-links">::<a href="index.html">Home</a>::<a href="reference.html">Reference</a>::<a href="tutorial.html">Tutorials</a>::<a href="dev.html">Developer's doc</a>::</div></td></tr></table><div id="footer-message" class="footer"><hr /><i>Copyright &copy; 2007 - 2018 The Apache Software Foundation, Licensed under the<a href="http://www.apache.org/licenses/">Apache License, Version 2.0</a>.</i><br /><i>Apache Ivy, Apache Ant, Ivy, Ant, Apache, the Apache Ivy logo, the Apache Ant logo and the Apache feather logo are trademarks of The Apache Software Foundation.</i><br /><i>All other marks mentioned may be trademarks or registered trademarks of their respective owners.</i></div></div></body></html>
\ No newline at end of file

Modified: ant/site/ivy/production/history/master/settings/outputters.html
URL: http://svn.apache.org/viewvc/ant/site/ivy/production/history/master/settings/outputters.html?rev=1849619&r1=1849618&r2=1849619&view=diff
==============================================================================
--- ant/site/ivy/production/history/master/settings/outputters.html (original)
+++ ant/site/ivy/production/history/master/settings/outputters.html Sun Dec 23 13:28:57 2018
@@ -226,7 +226,7 @@ hljs.initHighlightingOnLoad();</script><
 <div class="ulist">
 <ul>
 <li>
-<p>a log report outputter (<a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/java/org/apache/ivy/plugins/report/LogReportOutputter.java">LogReportOutputter</a>)<br/>
+<p>a log report outputter (<a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/java/org/apache/ivy/plugins/report/LogReportOutputter.java">LogReportOutputter</a>)<br/>
 which produces the output on the console at the end of the resolve, which looks like this:</p>
 </li>
 </ul>
@@ -244,7 +244,7 @@ which produces the output on the console
 <div class="ulist">
 <ul>
 <li>
-<p>an xml report outputter (<a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/java/org/apache/ivy/plugins/report/XmlReportOutputter.java">XmlReportOutputter</a>)<br/>
+<p>an xml report outputter (<a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/java/org/apache/ivy/plugins/report/XmlReportOutputter.java">XmlReportOutputter</a>)<br/>
 which produces an XML report in the cache, which is mandatory for correct Ivy behaviour, since it&#8217;s that report which is used when you do a post resolve step in a separate build from the resolve itself. It&#8217;s also this XML report which is processed to generate all the different reports available in the <a href="../use/report.html">report</a> task.</p>
 </li>
 </ul>

Modified: ant/site/ivy/production/history/master/tutorial.html
URL: http://svn.apache.org/viewvc/ant/site/ivy/production/history/master/tutorial.html?rev=1849619&r1=1849618&r2=1849619&view=diff
==============================================================================
--- ant/site/ivy/production/history/master/tutorial.html (original)
+++ ant/site/ivy/production/history/master/tutorial.html Sun Dec 23 13:28:57 2018
@@ -239,7 +239,7 @@ hljs.initHighlightingOnLoad();</script><
 <p>If you have any trouble, check our <a href="https://ant.apache.org/ivy/faq.html">FAQ</a>.</p>
 </div>
 <div class="paragraph">
-<p>OK, you&#8217;ve just seen how easy it is to take your first step with Ivy. Go ahead with the other tutorials, but before you do, make sure you have properly <a href="install.html">installed</a> Ivy and downloaded the tutorials sources (included in all Ivy distributions, in the <a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=tree;f=src/example">src/example</a> directory).</p>
+<p>OK, you&#8217;ve just seen how easy it is to take your first step with Ivy. Go ahead with the other tutorials, but before you do, make sure you have properly <a href="install.html">installed</a> Ivy and downloaded the tutorials sources (included in all Ivy distributions, in the <a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=tree;f=src/example">src/example</a> directory).</p>
 </div>
 </div>
 </div>

Modified: ant/site/ivy/production/history/master/tutorial/build-repository.html
URL: http://svn.apache.org/viewvc/ant/site/ivy/production/history/master/tutorial/build-repository.html?rev=1849619&r1=1849618&r2=1849619&view=diff
==============================================================================
--- ant/site/ivy/production/history/master/tutorial/build-repository.html (original)
+++ ant/site/ivy/production/history/master/tutorial/build-repository.html Sun Dec 23 13:28:57 2018
@@ -244,7 +244,7 @@ Default target: basic</code></pre>
 </div>
 </div>
 <div class="paragraph">
-<p>This project is accessible in the <a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=tree;f=src/example/build-a-ivy-repository">src/example/build-a-ivy-repository</a></p>
+<p>This project is accessible in the <a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=tree;f=src/example/build-a-ivy-repository">src/example/build-a-ivy-repository</a></p>
 </div>
 <div class="paragraph">
 <p>Next steps:<br/>

Modified: ant/site/ivy/production/history/master/tutorial/multiproject.html
URL: http://svn.apache.org/viewvc/ant/site/ivy/production/history/master/tutorial/multiproject.html?rev=1849619&r1=1849618&r2=1849619&view=diff
==============================================================================
--- ant/site/ivy/production/history/master/tutorial/multiproject.html (original)
+++ ant/site/ivy/production/history/master/tutorial/multiproject.html Sun Dec 23 13:28:57 2018
@@ -283,7 +283,7 @@ give access to all other modules feature
 <div class="ulist">
 <ul>
 <li>
-<p><a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/example/multi-project/build.xml">build.xml</a><br/>
+<p><a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/example/multi-project/build.xml">build.xml</a><br/>
 This is a root build file which can be used to call targets on all modules, in the order of their dependencies (ensuring that a module is always built before any module depending on it, for instance)</p>
 </li>
 <li>
@@ -291,10 +291,10 @@ This is a root build file which can be u
 <div class="ulist">
 <ul>
 <li>
-<p><a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/example/multi-project/common/common.xml">common.xml</a> the common build file imported by all build.xml files for each project. This build defines the targets which can be used in all projects.</p>
+<p><a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/example/multi-project/common/common.xml">common.xml</a> the common build file imported by all build.xml files for each project. This build defines the targets which can be used in all projects.</p>
 </li>
 <li>
-<p><a href="https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/example/multi-project/common/build.properties">build.properties</a> some properties common to all projects</p>
+<p><a href="https://gitbox.apache.org/repos/asf?p=ant-ivy.git;a=blob;f=src/example/multi-project/common/build.properties">build.properties</a> some properties common to all projects</p>
 </li>
 </ul>
 </div>

Modified: ant/site/ivy/production/write-doc.html
URL: http://svn.apache.org/viewvc/ant/site/ivy/production/write-doc.html?rev=1849619&r1=1849618&r2=1849619&view=diff
==============================================================================
--- ant/site/ivy/production/write-doc.html (original)
+++ ant/site/ivy/production/write-doc.html Sun Dec 23 13:28:57 2018
@@ -162,7 +162,7 @@
 		<h1 class="title">Contribute documentation</h1>
             <br class="xooki-br"/>Writing documentation for Apache Ivy&#153; is pretty simple.<br class="xooki-br"/><br class="xooki-br"/>The documentation engine used is called <a href="http://xooki.sourceforge.net">xooki</a>, and allows to edit pages while you browse them as soon as you browse them offline (and thus can actually save your modifications).<br class="xooki-br"/><br class="xooki-br"/>To browse the doc offline, we recommend to check it out from git:
 <pre>
-git clone <a href="https://git-wip-us.apache.org/repos/asf/ant-ivy.git">https://git-wip-us.apache.org/repos/asf/ant-ivy.git</a>
+git clone <a href="https://gitbox.apache.org/repos/asf/ant-ivy.git">https://gitbox.apache.org/repos/asf/ant-ivy.git</a>
 </pre>
 
 Alternatively you can also check out the whole site: