You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hop.apache.org by gi...@apache.org on 2020/12/26 16:23:16 UTC

[incubator-hop-website] branch asf-site updated: Website updated to aea10eb

This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/incubator-hop-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 09d3e62  Website updated to aea10eb
09d3e62 is described below

commit 09d3e62db37fa42c3580a8fcb07b5eee10554c31
Author: jenkins <bu...@apache.org>
AuthorDate: Sat Dec 26 16:23:12 2020 +0000

    Website updated to aea10eb
---
 .../latest/apache-release/checking-a-release.html  |  71 +++
 .../latest/apache-release/creating-a-release.html  |  80 +++
 dev-manual/latest/apache-release/index.html        |  19 +
 dev-manual/latest/getting-started.html             |   2 +-
 dev-manual/latest/index.html                       |   2 +-
 dev-manual/latest/integration-testing.html         |   2 +-
 dev-manual/latest/metadata-plugins.html            |   2 +-
 dev-manual/latest/plugin-development.html          |   2 +-
 dev-manual/latest/porting-kettle-plugins.html      |   2 +-
 dev-manual/latest/setup-dev-environment.html       |   2 +-
 dev-manual/latest/start-your-own-plugin.html       |   2 +-
 dev-manual/latest/webhop/developer-guide.html      |   2 +-
 dev-manual/latest/webhop/index.html                |   2 +-
 dev-manual/latest/webhop/webhop-antipatterns.html  |   2 +-
 sitemap-dev-manual.xml                             |  34 +-
 sitemap-manual.xml                                 | 598 ++++++++++-----------
 sitemap-tech-manual.xml                            |   8 +-
 17 files changed, 505 insertions(+), 327 deletions(-)

diff --git a/dev-manual/latest/apache-release/checking-a-release.html b/dev-manual/latest/apache-release/checking-a-release.html
new file mode 100644
index 0000000..e4bb361
--- /dev/null
+++ b/dev-manual/latest/apache-release/checking-a-release.html
@@ -0,0 +1,71 @@
+<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>Checking a Release :: Apache Hop (Incubating)</title> <link rel="canonical" href="https://hop.apache.org/dev-manual/latest/apache-release/checking-a-release.html"> <meta name="generator" content="Antora 2.3.4"> <link rel="stylesheet" href="../../../_/css/site-15bdf62002.css"> </head> <body class="article"> <div class="cookie-banner" id="cookies-eu-bann [...]
+
+sha512sum -c apache-hop-X.XX-incubating-rcX.tar.gz.sha512
+
+# should echo the artifact name and OK
+
+# check the gpg signature
+
+gpg --verify apache-hop-X.XX-incubating-rcX.tar.gz.asc
+
+# if it prints out gpg: Can't check signature: No public key fetch the key from public keyserver
+# 1. Check if the keyid matches a known key in the KEYS file https://dist.apache.org/repos/dist/dev/incubator/hop/KEYS
+# 2. grab the key from the public keyserver found in the release mail
+
+gpg --keyserver &lt;KEY SERVER&gt;  --receive-keys &lt;KEY ID&gt;
+
+# verify the package again
+
+gpg --verify apache-hop-X.XX-incubating-rcX.tar.gz.asc
+
+# output should be:
+# gpg: Good signature from "Owner Name &lt;Owner@apache.org&gt;" [ultimate]</code></pre> </div> </div> <div class="paragraph"> <p>If these steps pass we can start checking the content of the release. First step would be to download the matching source code from github.</p> </div> <div class="listingblock"> <div class="content"> <pre class="highlightjs highlight"><code class="language-bash hljs" data-lang="bash"># replace branch with the branch name mentioned in the release mail
+
+git clone --depth 1 --branch X.XX-rcX https://github.com/apache/incubator-hop.git source_version
+
+# check if the git commit matches the commit mentioned in the release mail
+
+cd source_version
+git rev-parse --short HEAD
+
+# remove the .git folder
+
+rm -rf .git
+cd ..</code></pre> </div> </div> <div class="paragraph"> <p>final step is to see if the content of the source repository matches the content of the downloaded archive.</p> </div> <div class="listingblock"> <div class="content"> <pre class="highlightjs highlight"><code class="language-bash hljs" data-lang="bash"># unpack the downloaded source code
+
+tar -xvf apache-hop-X.XX-incubating-rcX.tar.gz
+
+# do a diff to see if they match
+
+diff -qr source_version apache-hop-X.XX-incubating
+
+# this should show no output indicating that all files match
+# the folder containing the source code can now be removed
+
+rm -rf source_version</code></pre> </div> </div> <div class="paragraph"> <p>Check if the unpacked archive contains following files and if they are correct</p> </div> <div class="ulist"> <ul> <li> <p>DISCLAIMER</p> </li> <li> <p>LICENSE</p> <div class="ulist"> <ul> <li> <p>check if mentioned licenses are available in the licenses folder</p> </li> </ul> </div> </li> <li> <p>NOTICE</p> </li> <li> <p>README</p> <div class="ulist"> <ul> <li> <p>check for build instructions</p> </li> </ul> </d [...]
+
+mvn clean install
+
+# switch to the finished artifact, extract and test
+cd assemblies/client/target
+unzip hop-client-*.zip
+cd hop
+./hop-gui.sh</code></pre> </div> </div> </div> </div> <div class="sect1"> <h2 id="_extra_checks"><a class="anchor" href="#_extra_checks"></a>Extra checks</h2> <div class="sectionbody"> <div class="paragraph"> <p>You can also check for unwanted binary files on the checked out tag</p> </div> <div class="listingblock"> <div class="content"> <pre class="highlightjs highlight"><code class="language-bash hljs" data-lang="bash">git ls-files -z | xargs -0 file -b | sort | uniq -c</code></pre> </ [...]
+            (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
+            (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
+            m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
+            })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
+ 
+            ga('create', 'UA-151580460-1', 'auto' ,{'anonymize_ip':true});
+            ga('send', 'pageview');
+        }, true, false); </script> <script src="../../../_/js/vendor/docsearch-4983f0f1ec.min.js"></script> <!-- fetched from https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js --> <script> var search = docsearch({
+  appId: 'IEDZCR8JT4',
+  apiKey: '587e7bafb978fa5e4640ab18bfbd9b99',
+  indexName: 'hop-doc',
+  inputSelector: '#search-input',
+  autocompleteOptions: { hint: false, keyboardShortcuts: ['s'] },
+  algoliaOptions: { hitsPerPage: 10 }
+}).autocomplete
+search.on('autocomplete:closed', function () { search.autocomplete.setVal() })
+function focusSearchInput () { document.querySelector('#search-input').focus() }
+if (document.querySelector('.home-link.is-current')) window.addEventListener('load', focusSearchInput) </script> </body> </html> 
\ No newline at end of file
diff --git a/dev-manual/latest/apache-release/creating-a-release.html b/dev-manual/latest/apache-release/creating-a-release.html
new file mode 100644
index 0000000..daf8851
--- /dev/null
+++ b/dev-manual/latest/apache-release/creating-a-release.html
@@ -0,0 +1,80 @@
+<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>Creating a release :: Apache Hop (Incubating)</title> <link rel="canonical" href="https://hop.apache.org/dev-manual/latest/apache-release/creating-a-release.html"> <meta name="generator" content="Antora 2.3.4"> <link rel="stylesheet" href="../../../_/css/site-15bdf62002.css"> </head> <body class="article"> <div class="cookie-banner" id="cookies-eu-bann [...]
+git checkout releaseX.XX
+git push upstream releaseX.XX:releaseX.XX</code></pre> </div> </div> </div> </div> <div class="sect1"> <h2 id="_update_the_version_of_the_poms"><a class="anchor" href="#_update_the_version_of_the_poms"></a>update the version of the poms</h2> <div class="sectionbody"> <div class="listingblock"> <div class="content"> <pre class="highlightjs highlight"><code class="language-bash hljs" data-lang="bash">mvn versions:set -DnewVersion=X.XX -DgenerateBackupPoms=false</code></pre> </div> </div> < [...]
+git commit -m 'Create release version x.xx'
+git push upstream releaseX.XX:releaseX.XX
+
+git tag -a X.XX-rcX
+git push upstream tag X.XX-rcX</code></pre> </div> </div> </div> </div> <div class="sect1"> <h2 id="_creating_the_release_artifacts"><a class="anchor" href="#_creating_the_release_artifacts"></a>Creating the release artifacts</h2> <div class="sectionbody"> <div class="paragraph"> <p>Checkout the tag to a clean folder to avoid files that are ignored by git and remove the git folder. Next up is creating the tar.gz file</p> </div> <div class="listingblock"> <div class="content"> <pre class= [...]
+rm -rf apache-hop-X.XX-incubating/.git
+tar -czvf apache-hop-X.XX-incubating-rcX.tar.gz apache-hop-X.XX-incubating</code></pre> </div> </div> </div> </div> <div class="sect1"> <h2 id="_sign_the_artifacts"><a class="anchor" href="#_sign_the_artifacts"></a>Sign the artifacts</h2> <div class="sectionbody"> <div class="paragraph"> <p>This part assumes you already have created and registered keys to sign the artifacts, for more information on creating and adding your keys see <a href="#CreatingAKey">here</a></p> </div> <div class=" [...]
+sha512sum apache-hop-X.XX-incubating-rcX.tar.gz &gt; apache-hop-X.XX-incubating-rcX.tar.gz.sha512</code></pre> </div> </div> </div> </div> <div class="sect1"> <h2 id="_staging_the_files"><a class="anchor" href="#_staging_the_files"></a>Staging the files</h2> <div class="sectionbody"> <div class="paragraph"> <p>First step is to check out the SVN directory, and create a new directory</p> </div> <div class="listingblock"> <div class="content"> <pre class="highlightjs highlight"><code class= [...]
+cd hop_release
+svn mkdir apache-hop-x.xx-incubating-rcx</code></pre> </div> </div> <div class="paragraph"> <p>Now copy over the following files in this new directory</p> </div> <div class="listingblock"> <div class="content"> <pre>apache-hop-X.XX-incubating-rcX.tar.gz.sha512
+apache-hop-X.XX-incubating-rcX.tar.gz.asc
+apache-hop-X.XX-incubating-rcX.tar.gz</pre> </div> </div> <div class="paragraph"> <p>Final checks before adding these files</p> </div> <div class="ulist"> <ul> <li> <p>check chekcsum</p> </li> <li> <p>check pgp signature</p> </li> </ul> </div> <div class="listingblock"> <div class="content"> <pre class="highlightjs highlight"><code class="language-bash hljs" data-lang="bash">cd apache-hop-x.xx-incubating-rcx
+gpg --verify apache-hop-X.XX-incubating-rcX.tar.gz.asc
+sha512sum -c apache-hop-X.XX-incubating-rcX.tar.gz.sha512</code></pre> </div> </div> <div class="paragraph"> <p>Add and commit the files to svn</p> </div> <div class="listingblock"> <div class="content"> <pre class="highlightjs highlight"><code class="language-bash hljs" data-lang="bash">svn add *
+svn status
+svn commit -m 'Add release files for Apache hop X.XX-rcX'</code></pre> </div> </div> <div class="paragraph"> <p>Check if the files are uploaded <a href="https://dist.apache.org/repos/dist/dev/incubator/hop/">here</a></p> </div> </div> </div> <div class="sect1"> <h2 id="_send_mail_to_dev_list_to_announce_new_release_candidate"><a class="anchor" href="#_send_mail_to_dev_list_to_announce_new_release_candidate"></a>Send mail to dev list to announce new release candidate</h2> <div class="sect [...]
+TO: dev@hop.apache.org
+
+Hi All,
+
+&lt;INCLUDE SOME TEXT&gt;
+
+Build instructions can be found in the README included.
+
+The tag to be voted on is X.XX-rcX &lt;REPLACE TAG&gt; (commit &lt;COMMIT HASH&gt;):
+&lt;URL TO TAG COMMIT&gt;
+
+The release files, including signatures, digests, etc. can be found at:
+&lt;INCLUDE URL TO DIST RC FOLDER&gt;
+https://dist.apache.org/repos/dist/dev/incubator/hop/apache-hop-X.XX-incubating-rcX/
+
+The SHA512 Checksum for these artifacts is:
+&lt;INCLUDE CHECKSUM FROM SHA512 file&gt;
+
+Release artifacts are signed with the following key:
+&lt;ADD URL TO YOUR KEY ON A PUBLIC KEYSERVER&gt;
+
+For more information about the contents of this release, see:
+&lt;ADD URL TO RELEASE IN JIRA&gt;
+
+Please vote on releasing this package as Apache Hop 0.50!
+
+The vote is open for 72 hours and passes if
+a majority of at least 3 +1 PMC votes are cast.
+
+[ ] +1 Release this package as Apache Hop 0.50
+[ ] +0 No opinion
+[ ] -1 Do not release this package because ...
+
+Best Regards,
+&lt;YOUR NAME&gt;</pre> </div> </div> </div> </div> <div class="sect1"> <h2 id="_creating_a_key"><a class="anchor" href="#_creating_a_key"></a><a id="CreatingAKey"></a>Creating a key</h2> <div class="sectionbody"> <div class="paragraph"> <p>To generate and publish a key follow these steps, it is recommended to use your apache email as key alias.</p> </div> <div class="listingblock"> <div class="content"> <pre class="highlightjs highlight"><code class="language-bash hljs" data-lang="bash" [...]
+gpg -k &lt;username&gt;@apache.org
+# get the ID for your key
+gpg --send-keys --keyserver php.mit.edu &lt;KEY ID&gt;
+gpg --send-keys --keyserver keyserver.ubuntu.com &lt;KEY ID&gt;</code></pre> </div> </div> <div class="paragraph"> <p>Next step is to add your key to the key file in the Apache SVN repository.</p> </div> <div class="listingblock"> <div class="content"> <pre class="highlightjs highlight"><code class="language-bash hljs" data-lang="bash">svn co https://dist.apache.org/repos/dist/dev/incubator/hop hop_release
+cd hop_release
+gpg --list-sigs &lt;keyID&gt; &gt;&gt; KEYS
+gpg  --armor --export &lt;keyID&gt; &gt;&gt; KEYS
+svn commit -m "added new public key to KEYS file"</code></pre> </div> </div> </div> </div> </article> </main> </div> <footer> <div class="footer"> <dl> <dt>Overview</dt> <dd><a href="../../../download/">Download</a></dd> <dd><a href="../../../manual/latest/">Getting started</a></dd> </dl> <dl> <dt>Community</dt> <dd><a target="_blank" href="https://issues.apache.org/jira/projects/HOP/issues">Jira</a></dd> <dd><a target="_blank" href="https://chat.project-hop.org">Chat</a></dd> <dd><a tar [...]
+            (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
+            (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
+            m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
+            })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
+ 
+            ga('create', 'UA-151580460-1', 'auto' ,{'anonymize_ip':true});
+            ga('send', 'pageview');
+        }, true, false); </script> <script src="../../../_/js/vendor/docsearch-4983f0f1ec.min.js"></script> <!-- fetched from https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js --> <script> var search = docsearch({
+  appId: 'IEDZCR8JT4',
+  apiKey: '587e7bafb978fa5e4640ab18bfbd9b99',
+  indexName: 'hop-doc',
+  inputSelector: '#search-input',
+  autocompleteOptions: { hint: false, keyboardShortcuts: ['s'] },
+  algoliaOptions: { hitsPerPage: 10 }
+}).autocomplete
+search.on('autocomplete:closed', function () { search.autocomplete.setVal() })
+function focusSearchInput () { document.querySelector('#search-input').focus() }
+if (document.querySelector('.home-link.is-current')) window.addEventListener('load', focusSearchInput) </script> </body> </html> 
\ No newline at end of file
diff --git a/dev-manual/latest/apache-release/index.html b/dev-manual/latest/apache-release/index.html
new file mode 100644
index 0000000..fcb5487
--- /dev/null
+++ b/dev-manual/latest/apache-release/index.html
@@ -0,0 +1,19 @@
+<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>Release process :: Apache Hop (Incubating)</title> <link rel="canonical" href="https://hop.apache.org/dev-manual/latest/apache-release/index.html"> <meta name="generator" content="Antora 2.3.4"> <link rel="stylesheet" href="../../../_/css/site-15bdf62002.css"> </head> <body class="article"> <div class="cookie-banner" id="cookies-eu-banner" style="displ [...]
+            (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
+            (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
+            m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
+            })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
+ 
+            ga('create', 'UA-151580460-1', 'auto' ,{'anonymize_ip':true});
+            ga('send', 'pageview');
+        }, true, false); </script> <script src="../../../_/js/vendor/docsearch-4983f0f1ec.min.js"></script> <!-- fetched from https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js --> <script> var search = docsearch({
+  appId: 'IEDZCR8JT4',
+  apiKey: '587e7bafb978fa5e4640ab18bfbd9b99',
+  indexName: 'hop-doc',
+  inputSelector: '#search-input',
+  autocompleteOptions: { hint: false, keyboardShortcuts: ['s'] },
+  algoliaOptions: { hitsPerPage: 10 }
+}).autocomplete
+search.on('autocomplete:closed', function () { search.autocomplete.setVal() })
+function focusSearchInput () { document.querySelector('#search-input').focus() }
+if (document.querySelector('.home-link.is-current')) window.addEventListener('load', focusSearchInput) </script> </body> </html> 
\ No newline at end of file
diff --git a/dev-manual/latest/getting-started.html b/dev-manual/latest/getting-started.html
index 0b139a6..2426276 100644
--- a/dev-manual/latest/getting-started.html
+++ b/dev-manual/latest/getting-started.html
@@ -1,4 +1,4 @@
-<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>Getting Started :: Apache Hop (Incubating)</title> <link rel="canonical" href="https://hop.apache.org/dev-manual/latest/getting-started.html"> <meta name="generator" content="Antora 2.3.4"> <link rel="stylesheet" href="../../_/css/site-15bdf62002.css"> </head> <body class="article"> <div class="cookie-banner" id="cookies-eu-banner" style="display: none [...]
+<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>Getting Started :: Apache Hop (Incubating)</title> <link rel="canonical" href="https://hop.apache.org/dev-manual/latest/getting-started.html"> <meta name="generator" content="Antora 2.3.4"> <link rel="stylesheet" href="../../_/css/site-15bdf62002.css"> </head> <body class="article"> <div class="cookie-banner" id="cookies-eu-banner" style="display: none [...]
             (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
             (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
             m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
diff --git a/dev-manual/latest/index.html b/dev-manual/latest/index.html
index 5279423..67dea7f 100644
--- a/dev-manual/latest/index.html
+++ b/dev-manual/latest/index.html
@@ -1,4 +1,4 @@
-<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>Index Page :: Apache Hop (Incubating)</title> <link rel="canonical" href="https://hop.apache.org/dev-manual/latest/index.html"> <meta name="generator" content="Antora 2.3.4"> <link rel="stylesheet" href="../../_/css/site-15bdf62002.css"> </head> <body class="article"> <div class="cookie-banner" id="cookies-eu-banner" style="display: none;"> <div id="co [...]
+<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>Index Page :: Apache Hop (Incubating)</title> <link rel="canonical" href="https://hop.apache.org/dev-manual/latest/index.html"> <meta name="generator" content="Antora 2.3.4"> <link rel="stylesheet" href="../../_/css/site-15bdf62002.css"> </head> <body class="article"> <div class="cookie-banner" id="cookies-eu-banner" style="display: none;"> <div id="co [...]
             (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
             (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
             m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
diff --git a/dev-manual/latest/integration-testing.html b/dev-manual/latest/integration-testing.html
index 1a723e9..ec7a256 100644
--- a/dev-manual/latest/integration-testing.html
+++ b/dev-manual/latest/integration-testing.html
@@ -1,4 +1,4 @@
-<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>Integration Testing :: Apache Hop (Incubating)</title> <link rel="canonical" href="https://hop.apache.org/dev-manual/latest/integration-testing.html"> <meta name="generator" content="Antora 2.3.4"> <link rel="stylesheet" href="../../_/css/site-15bdf62002.css"> </head> <body class="article"> <div class="cookie-banner" id="cookies-eu-banner" style="displ [...]
+<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>Integration Testing :: Apache Hop (Incubating)</title> <link rel="canonical" href="https://hop.apache.org/dev-manual/latest/integration-testing.html"> <meta name="generator" content="Antora 2.3.4"> <link rel="stylesheet" href="../../_/css/site-15bdf62002.css"> </head> <body class="article"> <div class="cookie-banner" id="cookies-eu-banner" style="displ [...]
 
 
 var ok = true;
diff --git a/dev-manual/latest/metadata-plugins.html b/dev-manual/latest/metadata-plugins.html
index a33c4fb..e6a0007 100644
--- a/dev-manual/latest/metadata-plugins.html
+++ b/dev-manual/latest/metadata-plugins.html
@@ -1,4 +1,4 @@
-<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>Metadata plugins :: Apache Hop (Incubating)</title> <link rel="canonical" href="https://hop.apache.org/dev-manual/latest/metadata-plugins.html"> <meta name="generator" content="Antora 2.3.4"> <link rel="stylesheet" href="../../_/css/site-15bdf62002.css"> </head> <body class="article"> <div class="cookie-banner" id="cookies-eu-banner" style="display: no [...]
+<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>Metadata plugins :: Apache Hop (Incubating)</title> <link rel="canonical" href="https://hop.apache.org/dev-manual/latest/metadata-plugins.html"> <meta name="generator" content="Antora 2.3.4"> <link rel="stylesheet" href="../../_/css/site-15bdf62002.css"> </head> <body class="article"> <div class="cookie-banner" id="cookies-eu-banner" style="display: no [...]
             (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
             (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
             m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
diff --git a/dev-manual/latest/plugin-development.html b/dev-manual/latest/plugin-development.html
index a12a6e3..f3743ff 100644
--- a/dev-manual/latest/plugin-development.html
+++ b/dev-manual/latest/plugin-development.html
@@ -1,4 +1,4 @@
-<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>Hop Plugin Development :: Apache Hop (Incubating)</title> <link rel="canonical" href="https://hop.apache.org/dev-manual/latest/plugin-development.html"> <meta name="generator" content="Antora 2.3.4"> <link rel="stylesheet" href="../../_/css/site-15bdf62002.css"> </head> <body class="article"> <div class="cookie-banner" id="cookies-eu-banner" style="dis [...]
+<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>Hop Plugin Development :: Apache Hop (Incubating)</title> <link rel="canonical" href="https://hop.apache.org/dev-manual/latest/plugin-development.html"> <meta name="generator" content="Antora 2.3.4"> <link rel="stylesheet" href="../../_/css/site-15bdf62002.css"> </head> <body class="article"> <div class="cookie-banner" id="cookies-eu-banner" style="dis [...]
             (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
             (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
             m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
diff --git a/dev-manual/latest/porting-kettle-plugins.html b/dev-manual/latest/porting-kettle-plugins.html
index 68a52b1..5c199b0 100644
--- a/dev-manual/latest/porting-kettle-plugins.html
+++ b/dev-manual/latest/porting-kettle-plugins.html
@@ -1,4 +1,4 @@
-<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>Porting Kettle Plugins :: Apache Hop (Incubating)</title> <link rel="canonical" href="https://hop.apache.org/dev-manual/latest/porting-kettle-plugins.html"> <meta name="generator" content="Antora 2.3.4"> <link rel="stylesheet" href="../../_/css/site-15bdf62002.css"> </head> <body class="article"> <div class="cookie-banner" id="cookies-eu-banner" style= [...]
+<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>Porting Kettle Plugins :: Apache Hop (Incubating)</title> <link rel="canonical" href="https://hop.apache.org/dev-manual/latest/porting-kettle-plugins.html"> <meta name="generator" content="Antora 2.3.4"> <link rel="stylesheet" href="../../_/css/site-15bdf62002.css"> </head> <body class="article"> <div class="cookie-banner" id="cookies-eu-banner" style= [...]
 
  ...
 
diff --git a/dev-manual/latest/setup-dev-environment.html b/dev-manual/latest/setup-dev-environment.html
index 033813d..c08a245 100644
--- a/dev-manual/latest/setup-dev-environment.html
+++ b/dev-manual/latest/setup-dev-environment.html
@@ -1,4 +1,4 @@
-<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>Setting up your development environment :: Apache Hop (Incubating)</title> <link rel="canonical" href="https://hop.apache.org/dev-manual/latest/setup-dev-environment.html"> <meta name="generator" content="Antora 2.3.4"> <link rel="stylesheet" href="../../_/css/site-15bdf62002.css"> </head> <body class="article"> <div class="cookie-banner" id="cookies-e [...]
+<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>Setting up your development environment :: Apache Hop (Incubating)</title> <link rel="canonical" href="https://hop.apache.org/dev-manual/latest/setup-dev-environment.html"> <meta name="generator" content="Antora 2.3.4"> <link rel="stylesheet" href="../../_/css/site-15bdf62002.css"> </head> <body class="article"> <div class="cookie-banner" id="cookies-e [...]
 #
 HOP_OPTIONS="${HOP_OPTIONS} -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005"</code></pre> </div> </div> <div class="paragraph"> <p>In IntelliJ you can now start a remote debugging session using the menu:</p> </div> <div class="paragraph"> <p><strong>Run&#8201;&#8212;&#8201;Attach to process&#8230;&#8203; </strong></p> </div> <div class="paragraph"> <p>You can now set breakpoints in your code and see what&#8217;s going on.</p> </div> </ [...]
             (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
diff --git a/dev-manual/latest/start-your-own-plugin.html b/dev-manual/latest/start-your-own-plugin.html
index cda5a0a..ae72938 100644
--- a/dev-manual/latest/start-your-own-plugin.html
+++ b/dev-manual/latest/start-your-own-plugin.html
@@ -1,4 +1,4 @@
-<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>Creating a remote plugin :: Apache Hop (Incubating)</title> <link rel="canonical" href="https://hop.apache.org/dev-manual/latest/start-your-own-plugin.html"> <meta name="generator" content="Antora 2.3.4"> <link rel="stylesheet" href="../../_/css/site-15bdf62002.css"> </head> <body class="article"> <div class="cookie-banner" id="cookies-eu-banner" style [...]
+<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>Creating a remote plugin :: Apache Hop (Incubating)</title> <link rel="canonical" href="https://hop.apache.org/dev-manual/latest/start-your-own-plugin.html"> <meta name="generator" content="Antora 2.3.4"> <link rel="stylesheet" href="../../_/css/site-15bdf62002.css"> </head> <body class="article"> <div class="cookie-banner" id="cookies-eu-banner" style [...]
             &lt;groupId&gt;org.apache.hop&lt;/groupId&gt;
             &lt;artifactId&gt;hop-core&lt;/artifactId&gt;
             &lt;version&gt;${hop.version}&lt;/version&gt;
diff --git a/dev-manual/latest/webhop/developer-guide.html b/dev-manual/latest/webhop/developer-guide.html
index 64fc8a5..1bc9887 100644
--- a/dev-manual/latest/webhop/developer-guide.html
+++ b/dev-manual/latest/webhop/developer-guide.html
@@ -1,4 +1,4 @@
-<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>Developer Guide :: Apache Hop (Incubating)</title> <link rel="canonical" href="https://hop.apache.org/dev-manual/latest/webhop/developer-guide.html"> <meta name="generator" content="Antora 2.3.4"> <link rel="stylesheet" href="../../../_/css/site-15bdf62002.css"> </head> <body class="article"> <div class="cookie-banner" id="cookies-eu-banner" style="dis [...]
+<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>Developer Guide :: Apache Hop (Incubating)</title> <link rel="canonical" href="https://hop.apache.org/dev-manual/latest/webhop/developer-guide.html"> <meta name="generator" content="Antora 2.3.4"> <link rel="stylesheet" href="../../../_/css/site-15bdf62002.css"> </head> <body class="article"> <div class="cookie-banner" id="cookies-eu-banner" style="dis [...]
             (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
             (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
             m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
diff --git a/dev-manual/latest/webhop/index.html b/dev-manual/latest/webhop/index.html
index 908fdd8..845f8b7 100644
--- a/dev-manual/latest/webhop/index.html
+++ b/dev-manual/latest/webhop/index.html
@@ -1,4 +1,4 @@
-<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>Index Page :: Apache Hop (Incubating)</title> <link rel="canonical" href="https://hop.apache.org/dev-manual/latest/webhop/index.html"> <meta name="generator" content="Antora 2.3.4"> <link rel="stylesheet" href="../../../_/css/site-15bdf62002.css"> </head> <body class="article"> <div class="cookie-banner" id="cookies-eu-banner" style="display: none;"> < [...]
+<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>Index Page :: Apache Hop (Incubating)</title> <link rel="canonical" href="https://hop.apache.org/dev-manual/latest/webhop/index.html"> <meta name="generator" content="Antora 2.3.4"> <link rel="stylesheet" href="../../../_/css/site-15bdf62002.css"> </head> <body class="article"> <div class="cookie-banner" id="cookies-eu-banner" style="display: none;"> < [...]
             (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
             (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
             m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
diff --git a/dev-manual/latest/webhop/webhop-antipatterns.html b/dev-manual/latest/webhop/webhop-antipatterns.html
index f82bf7f..b98b682 100644
--- a/dev-manual/latest/webhop/webhop-antipatterns.html
+++ b/dev-manual/latest/webhop/webhop-antipatterns.html
@@ -1,4 +1,4 @@
-<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>Developer Antipatterns :: Apache Hop (Incubating)</title> <link rel="canonical" href="https://hop.apache.org/dev-manual/latest/webhop/webhop-antipatterns.html"> <meta name="generator" content="Antora 2.3.4"> <link rel="stylesheet" href="../../../_/css/site-15bdf62002.css"> </head> <body class="article"> <div class="cookie-banner" id="cookies-eu-banner" [...]
+<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>Developer Antipatterns :: Apache Hop (Incubating)</title> <link rel="canonical" href="https://hop.apache.org/dev-manual/latest/webhop/webhop-antipatterns.html"> <meta name="generator" content="Antora 2.3.4"> <link rel="stylesheet" href="../../../_/css/site-15bdf62002.css"> </head> <body class="article"> <div class="cookie-banner" id="cookies-eu-banner" [...]
   private static GUIResource guiResource;
 
   // Making the constructor private prevents instantiation from outside
diff --git a/sitemap-dev-manual.xml b/sitemap-dev-manual.xml
index 897d0b3..d51a269 100644
--- a/sitemap-dev-manual.xml
+++ b/sitemap-dev-manual.xml
@@ -1,51 +1,59 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
 <url>
-<loc>https://hop.apache.org/dev-manual/latest/creating-a-release.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<loc>https://hop.apache.org/dev-manual/latest/apache-release/checking-a-release.html</loc>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
+</url>
+<url>
+<loc>https://hop.apache.org/dev-manual/latest/apache-release/creating-a-release.html</loc>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
+</url>
+<url>
+<loc>https://hop.apache.org/dev-manual/latest/apache-release/index.html</loc>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/dev-manual/latest/getting-started.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/dev-manual/latest/index.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/dev-manual/latest/integration-testing.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/dev-manual/latest/metadata-plugins.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/dev-manual/latest/plugin-development.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/dev-manual/latest/porting-kettle-plugins.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/dev-manual/latest/setup-dev-environment.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/dev-manual/latest/start-your-own-plugin.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/dev-manual/latest/webhop/developer-guide.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/dev-manual/latest/webhop/index.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/dev-manual/latest/webhop/webhop-antipatterns.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 </urlset>
diff --git a/sitemap-manual.xml b/sitemap-manual.xml
index f65909b..167fece 100644
--- a/sitemap-manual.xml
+++ b/sitemap-manual.xml
@@ -2,1198 +2,1198 @@
 <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
 <url>
 <loc>https://hop.apache.org/manual/latest/concepts.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/faq/faq.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/getting-started.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-gui/environments/environments.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-gui/index.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-gui/pipelines/create-pipeline.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-gui/pipelines/hop-pipeline-editor.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-gui/pipelines/metadata-injection.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-gui/pipelines/pipeline-run-configurations/beam-dataflow-pipeline-engine.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-gui/pipelines/pipeline-run-configurations/beam-direct-pipeline-engine.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-gui/pipelines/pipeline-run-configurations/beam-flink-pipeline-engine.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-gui/pipelines/pipeline-run-configurations/beam-spark-pipeline-engine.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-gui/pipelines/pipeline-run-configurations/local-pipeline-engine.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-gui/pipelines/pipeline-run-configurations/pipeline-run-configurations.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-gui/pipelines/pipeline-run-configurations/remote-pipeline-engine.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-gui/pipelines/pipelines.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-gui/pipelines/run-preview-debug-pipeline.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-gui/shortcuts.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-gui/variables/variables.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-gui/workflows/create-workflow.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-gui/workflows/run-debug-workflow.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-gui/workflows/workflow-run-configurations/workflow-run-configurations.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-gui/workflows/workflows.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-gui/workitems.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-run/index.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-server/index.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-vs-kettle/hop-vs-kettle.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-vs-kettle/if-you-know-kettle.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-vs-kettle/index.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/image-testpage.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/index.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/abort.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/addresultfilenames.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/checkdbconnection.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/checkfilelocked.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/columnsexist.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/copyfiles.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/copymoveresultfilenames.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/createfile.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/createfolder.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/delay.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/deletefile.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/deletefiles.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/deletefolders.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/deleteresultfilenames.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/dostounix.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/dtdvalidator.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/dummy.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/eval.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/evalfilesmetrics.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/evaluatetablecontent.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/filecompare.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/fileexists.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/filesexist.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/folderisempty.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/folderscompare.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/ftp.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/ftpdelete.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/ftpput.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/ftpsget.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/ftpsput.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/getpop.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/http.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/mail.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/mailvalidator.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/movefiles.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/msgboxinfo.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/mssqlbulkload.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/mysqlbulkfile.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/mysqlbulkload.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/pgpdecryptfiles.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/pgpencryptfiles.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/pgpfiles.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/pgpverify.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/ping.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/pipeline.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/repeat-end.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/repeat.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/sendnagiospassivecheck.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/setvariables.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/sftp.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/sftpput.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/shell.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/simpleeval.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/snmptrap.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/sql.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/start.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/success.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/syslog.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/tableexists.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/telnet.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/truncatetables.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/unzip.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/waitforfile.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/waitforsql.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/webserviceavailable.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/workflow.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/writetofile.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/writetolog.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/xmlwellformed.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/xsdvalidator.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/xslt.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/actions/zipfile.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/databases.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/databases/as400.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/databases/cache.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/databases/db2.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/databases/derby.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/databases/exasol.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/databases/firebird.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/databases/googlebigquery.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/databases/greenplum.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/databases/h2.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/databases/hypersonic.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/databases/infinidb.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/databases/infobright.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/databases/informix.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/databases/ingres.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/databases/interbase.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/databases/kingbasees.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/databases/mariadb.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/databases/monetdb.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/databases/mssql.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/databases/mssqlnative.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/databases/mysql.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/databases/netezza.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/databases/oracle.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/databases/oraclerdb.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/databases/postgresql.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/databases/redshift.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/databases/sapdb.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/databases/snowflake.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/databases/sqlbase.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/databases/sqlite.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/databases/sybase.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/databases/sybaseiq.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/databases/teradata.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/databases/universe.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/databases/vectorwise.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/databases/vertica.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/plugins.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/abort.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/addsequence.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/addxml.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/analyticquery.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/append.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/beambigqueryinput.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/beambigqueryoutput.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/beamconsume.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/beaminput.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/beamoutput.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/beamproduce.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/beampublisher.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/beamsubscriber.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/beamtimestamp.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/beamwindow.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/blockingtransform.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/blockuntiltransformsfinish.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/calculator.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/changefileencoding.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/checksum.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/clonerow.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/closure.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/columnexists.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/combinationlookup.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/concatfields.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/constant.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/creditcardvalidator.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/csvinput.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/cubeinput.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/cubeoutput.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/databasejoin.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/databaselookup.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/datagrid.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/dbproc.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/delay.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/delete.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/denormaliser.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/detectemptystream.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/detectlastrow.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/dimensionlookup.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/dummy.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/dynamicsqlrow.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/edi2xml.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/excelinput.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/exceloutput.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/excelwriter.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/execprocess.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/execsqlrow.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/fake.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/fieldschangesequence.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/fieldsplitter.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/fileexists.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/filelocked.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/filesfromresult.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/filestoresult.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/filterrows.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/flattener.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/fuzzymatch.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/getfilenames.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/getfilesrowcount.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/getslavesequence.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/getsubfolders.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/gettablenames.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/getvariable.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/getxmldata.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/groupby.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/http.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/httppost.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/ifnull.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/injector.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/insertupdate.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/janino.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/javafilter.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/javascript.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/joinrows.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/jsoninput.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/jsonoutput.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/ldapinput.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/ldapoutput.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/ldifinput.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/loadfileinput.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/mail.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/mailinput.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/mailvalidator.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/memgroupby.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/mergejoin.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/mergerows.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/metainject.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/mongodbinput.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/mongodboutput.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/multimerge.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/normaliser.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/nullif.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/numberrange.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/pgbulkloader.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/pgpdecryptstream.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/pgpencryptstream.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/pipelineexcecutor.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/processfiles.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/propertyinput.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/propertyoutput.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/randomvalue.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/recordsfromstream.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/regexeval.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/replacestring.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/reservoirsampling.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/rest.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/rowgenerator.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/rowsfromresult.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/rowstoresult.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/selectvalues.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/setvalueconstant.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/setvaluefield.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/setvariable.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/sort.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/sortedmerge.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/splitfieldtorows.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/sql.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/sqlfileoutput.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/ssh.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/streamlookup.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/streamschemamerge.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/stringcut.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/stringoperations.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/switchcase.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/synchronizeaftermerge.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/syslog.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/systemdata.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/tablecompare.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/tableexists.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/tableinput.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/tableoutput.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/terafast.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/textfileinput.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/textfileoutput.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/tokenreplacement.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/uniquerows.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/uniquerowsbyhashset.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/update.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/userdefinedjavaclass.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/validator.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/valuemapper.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/webserviceavailable.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/webservices.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/workflowexecutor.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/writetolog.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/xmlinputstream.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/xmljoin.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/xmloutput.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/xsdvalidator.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/xslt.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/yamlinput.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/transforms/zipfile.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/projects.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/samples/dummy-sample.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/samples/samples.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 </urlset>
diff --git a/sitemap-tech-manual.xml b/sitemap-tech-manual.xml
index 3d8090f..1cc5e86 100644
--- a/sitemap-tech-manual.xml
+++ b/sitemap-tech-manual.xml
@@ -2,18 +2,18 @@
 <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
 <url>
 <loc>https://hop.apache.org/tech-manual/latest/getting-started.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/tech-manual/latest/hop-logo-and-icons.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/tech-manual/latest/hop-uit.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/tech-manual/latest/index.html</loc>
-<lastmod>2020-12-25T18:15:49.276Z</lastmod>
+<lastmod>2020-12-26T16:22:35.533Z</lastmod>
 </url>
 </urlset>