You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@knox.apache.org by kr...@apache.org on 2019/07/24 18:56:52 UTC

svn commit: r1863715 [5/5] - in /knox: site/ site/books/knox-0-12-0/ site/books/knox-0-13-0/ site/books/knox-0-14-0/ site/books/knox-1-0-0/ site/books/knox-1-1-0/ site/books/knox-1-2-0/ site/books/knox-1-3-0/ site/books/knox-1-4-0/ site/books/knox-1-4-...

Added: knox/site/books/knox-1-4-0/warning.png
URL: http://svn.apache.org/viewvc/knox/site/books/knox-1-4-0/warning.png?rev=1863715&view=auto
==============================================================================
Binary file - no diff available.

Propchange: knox/site/books/knox-1-4-0/warning.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: knox/site/books/knox-1-4-0/workflow-configuration.xml
URL: http://svn.apache.org/viewvc/knox/site/books/knox-1-4-0/workflow-configuration.xml?rev=1863715&view=auto
==============================================================================
--- knox/site/books/knox-1-4-0/workflow-configuration.xml (added)
+++ knox/site/books/knox-1-4-0/workflow-configuration.xml Wed Jul 24 18:56:51 2019
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+-->
+<configuration>
+    <property>
+        <name>jobTracker</name>
+        <value>REPLACE.JOBTRACKER.RPCHOSTPORT</value>
+        <!-- Example: <value>localhost:50300</value> -->
+    </property>
+    <property>
+        <name>nameNode</name>
+        <value>hdfs://REPLACE.NAMENODE.RPCHOSTPORT</value>
+        <!-- Example: <value>hdfs://localhost:8020</value> -->
+    </property>
+    <property>
+        <name>oozie.wf.application.path</name>
+        <value>hdfs://REPLACE.NAMENODE.RPCHOSTPORT/tmp/test</value>
+        <!-- Example: <value>hdfs://localhost:8020/tmp/test</value> -->
+    </property>
+    <property>
+        <name>user.name</name>
+        <value>mapred</value>
+    </property>
+    <property>
+        <name>inputDir</name>
+        <value>/tmp/test/input</value>
+    </property>
+    <property>
+        <name>outputDir</name>
+        <value>/tmp/test/output</value>
+    </property>
+</configuration>

Added: knox/site/books/knox-1-4-0/workflow-definition.xml
URL: http://svn.apache.org/viewvc/knox/site/books/knox-1-4-0/workflow-definition.xml?rev=1863715&view=auto
==============================================================================
--- knox/site/books/knox-1-4-0/workflow-definition.xml (added)
+++ knox/site/books/knox-1-4-0/workflow-definition.xml Wed Jul 24 18:56:51 2019
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+-->
+<workflow-app xmlns="uri:oozie:workflow:0.2" name="wordcount-workflow">
+    <start to="root"/>
+    <action name="root">
+        <java>
+            <job-tracker>${jobTracker}</job-tracker>
+            <name-node>${nameNode}</name-node>
+            <main-class>org.apache.hadoop.examples.WordCount</main-class>
+            <arg>${inputDir}</arg>
+            <arg>${outputDir}</arg>
+        </java>
+        <ok to="end"/>
+        <error to="fail"/>
+    </action>
+    <kill name="fail">
+        <message>Java failed, error message[${wf:errorMessage(wf:lastErrorNode())}]</message>
+    </kill>
+    <end name="end"/>
+</workflow-app>
\ No newline at end of file

Modified: knox/site/index.html
URL: http://svn.apache.org/viewvc/knox/site/index.html?rev=1863715&r1=1863714&r2=1863715&view=diff
==============================================================================
--- knox/site/index.html (original)
+++ knox/site/index.html Wed Jul 24 18:56:51 2019
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.8.1 from src/site/markdown/index.md at 2019-07-23
+ | Generated by Apache Maven Doxia Site Renderer 1.8.1 from src/site/markdown/index.md at 2019-07-24
  | Rendered using Apache Maven Fluido Skin 1.7
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20190723" />
+    <meta name="Date-Revision-yyyymmdd" content="20190724" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Knox Gateway &#x2013; Announcing Apache Knox 1.3.0!</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.7.min.css" />
@@ -40,7 +40,7 @@
 
       <div id="breadcrumbs">
         <ul class="breadcrumb">
-        <li id="publishDate">Last Published: 2019-07-23</li>
+        <li id="publishDate">Last Published: 2019-07-24</li>
         </ul>
       </div>
       <div class="row-fluid">

Modified: knox/site/issue-management.html
URL: http://svn.apache.org/viewvc/knox/site/issue-management.html?rev=1863715&r1=1863714&r2=1863715&view=diff
==============================================================================
--- knox/site/issue-management.html (original)
+++ knox/site/issue-management.html Wed Jul 24 18:56:51 2019
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.8.1 from org.apache.maven.plugins:maven-project-info-reports-plugin:3.0.0:issue-management at 2019-07-23
+ | Generated by Apache Maven Doxia Site Renderer 1.8.1 from org.apache.maven.plugins:maven-project-info-reports-plugin:3.0.0:issue-management at 2019-07-24
  | Rendered using Apache Maven Fluido Skin 1.7
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20190723" />
+    <meta name="Date-Revision-yyyymmdd" content="20190724" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Knox Gateway &#x2013; Issue Management</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.7.min.css" />
@@ -40,7 +40,7 @@
 
       <div id="breadcrumbs">
         <ul class="breadcrumb">
-        <li id="publishDate">Last Published: 2019-07-23</li>
+        <li id="publishDate">Last Published: 2019-07-24</li>
         </ul>
       </div>
       <div class="row-fluid">

Modified: knox/site/licenses.html
URL: http://svn.apache.org/viewvc/knox/site/licenses.html?rev=1863715&r1=1863714&r2=1863715&view=diff
==============================================================================
--- knox/site/licenses.html (original)
+++ knox/site/licenses.html Wed Jul 24 18:56:51 2019
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.8.1 from org.apache.maven.plugins:maven-project-info-reports-plugin:3.0.0:licenses at 2019-07-23
+ | Generated by Apache Maven Doxia Site Renderer 1.8.1 from org.apache.maven.plugins:maven-project-info-reports-plugin:3.0.0:licenses at 2019-07-24
  | Rendered using Apache Maven Fluido Skin 1.7
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20190723" />
+    <meta name="Date-Revision-yyyymmdd" content="20190724" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Knox Gateway &#x2013; Project Licenses</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.7.min.css" />
@@ -40,7 +40,7 @@
 
       <div id="breadcrumbs">
         <ul class="breadcrumb">
-        <li id="publishDate">Last Published: 2019-07-23</li>
+        <li id="publishDate">Last Published: 2019-07-24</li>
         </ul>
       </div>
       <div class="row-fluid">

Modified: knox/site/mailing-lists.html
URL: http://svn.apache.org/viewvc/knox/site/mailing-lists.html?rev=1863715&r1=1863714&r2=1863715&view=diff
==============================================================================
--- knox/site/mailing-lists.html (original)
+++ knox/site/mailing-lists.html Wed Jul 24 18:56:51 2019
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.8.1 from org.apache.maven.plugins:maven-project-info-reports-plugin:3.0.0:mailing-lists at 2019-07-23
+ | Generated by Apache Maven Doxia Site Renderer 1.8.1 from org.apache.maven.plugins:maven-project-info-reports-plugin:3.0.0:mailing-lists at 2019-07-24
  | Rendered using Apache Maven Fluido Skin 1.7
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20190723" />
+    <meta name="Date-Revision-yyyymmdd" content="20190724" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Knox Gateway &#x2013; Project Mailing Lists</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.7.min.css" />
@@ -40,7 +40,7 @@
 
       <div id="breadcrumbs">
         <ul class="breadcrumb">
-        <li id="publishDate">Last Published: 2019-07-23</li>
+        <li id="publishDate">Last Published: 2019-07-24</li>
         </ul>
       </div>
       <div class="row-fluid">

Modified: knox/site/project-info.html
URL: http://svn.apache.org/viewvc/knox/site/project-info.html?rev=1863715&r1=1863714&r2=1863715&view=diff
==============================================================================
--- knox/site/project-info.html (original)
+++ knox/site/project-info.html Wed Jul 24 18:56:51 2019
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.8.1 from org.apache.maven.plugins:maven-site-plugin:3.7.1:CategorySummaryDocumentRenderer at 2019-07-23
+ | Generated by Apache Maven Doxia Site Renderer 1.8.1 from org.apache.maven.plugins:maven-site-plugin:3.7.1:CategorySummaryDocumentRenderer at 2019-07-24
  | Rendered using Apache Maven Fluido Skin 1.7
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20190723" />
+    <meta name="Date-Revision-yyyymmdd" content="20190724" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Knox Gateway &#x2013; Project Information</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.7.min.css" />
@@ -40,7 +40,7 @@
 
       <div id="breadcrumbs">
         <ul class="breadcrumb">
-        <li id="publishDate">Last Published: 2019-07-23</li>
+        <li id="publishDate">Last Published: 2019-07-24</li>
         </ul>
       </div>
       <div class="row-fluid">

Modified: knox/site/team.html
URL: http://svn.apache.org/viewvc/knox/site/team.html?rev=1863715&r1=1863714&r2=1863715&view=diff
==============================================================================
--- knox/site/team.html (original)
+++ knox/site/team.html Wed Jul 24 18:56:51 2019
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.8.1 from org.apache.maven.plugins:maven-project-info-reports-plugin:3.0.0:team at 2019-07-23
+ | Generated by Apache Maven Doxia Site Renderer 1.8.1 from org.apache.maven.plugins:maven-project-info-reports-plugin:3.0.0:team at 2019-07-24
  | Rendered using Apache Maven Fluido Skin 1.7
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20190723" />
+    <meta name="Date-Revision-yyyymmdd" content="20190724" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Knox Gateway &#x2013; Project Team</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.7.min.css" />
@@ -40,7 +40,7 @@
 
       <div id="breadcrumbs">
         <ul class="breadcrumb">
-        <li id="publishDate">Last Published: 2019-07-23</li>
+        <li id="publishDate">Last Published: 2019-07-24</li>
         </ul>
       </div>
       <div class="row-fluid">

Modified: knox/trunk/books/1.4.0/book.md
URL: http://svn.apache.org/viewvc/knox/trunk/books/1.4.0/book.md?rev=1863715&r1=1863714&r2=1863715&view=diff
==============================================================================
--- knox/trunk/books/1.4.0/book.md (original)
+++ knox/trunk/books/1.4.0/book.md Wed Jul 24 18:56:51 2019
@@ -21,7 +21,7 @@
 <!-- <img src="apache-logo.gif" alt="Apache"/> -->
 <img src="apache-logo.gif" align="right" alt="Apache"/>
 
-# Apache Knox Gateway 1.3.x User's Guide #
+# Apache Knox Gateway 1.4.x User's Guide #
 
 ## Table Of Contents ##
 

Modified: knox/trunk/books/1.4.0/dev-guide/book.md
URL: http://svn.apache.org/viewvc/knox/trunk/books/1.4.0/dev-guide/book.md?rev=1863715&r1=1863714&r2=1863715&view=diff
==============================================================================
--- knox/trunk/books/1.4.0/dev-guide/book.md (original)
+++ knox/trunk/books/1.4.0/dev-guide/book.md Wed Jul 24 18:56:51 2019
@@ -20,7 +20,7 @@
 <img src="knox-logo.gif" alt="Knox"/>
 <img src="apache-logo.gif" align="right" alt="Apache"/>
 
-# Apache Knox Gateway 1.3.x Developer's Guide #
+# Apache Knox Gateway 1.4.x Developer's Guide #
 
 ## Table Of Contents ##
 * #[Overview]
@@ -779,7 +779,7 @@ allRules.addRules( newRules );
     <parent>
         <groupId>org.apache.knox</groupId>
         <artifactId>gateway</artifactId>
-        <version>1.3.0-SNAPSHOT</version>
+        <version>1.4.0-SNAPSHOT</version>
     </parent>
 
     <artifactId>gateway-service-weather</artifactId>
@@ -942,7 +942,7 @@ by that role and name. Therefore new pol
 For example,
 
 ```xml
-<service role="FOO" name="foo" version="1.3.0">
+<service role="FOO" name="foo" version="1.4.0">
     <policies>
         <policy role="webappsec"/>
         <policy role="authentication"/>
@@ -1376,7 +1376,7 @@ public interface ProviderDeploymentContr
     <parent>
         <groupId>org.apache.knox</groupId>
         <artifactId>gateway</artifactId>
-        <version>1.3.0-SNAPSHOT</version>
+        <version>1.4.0-SNAPSHOT</version>
     </parent>
 
     <artifactId>gateway-provider-security-authn-sample</artifactId>

Modified: knox/trunk/books/1.4.0/quick_start.md
URL: http://svn.apache.org/viewvc/knox/trunk/books/1.4.0/quick_start.md?rev=1863715&r1=1863714&r2=1863715&view=diff
==============================================================================
--- knox/trunk/books/1.4.0/quick_start.md (original)
+++ knox/trunk/books/1.4.0/quick_start.md Wed Jul 24 18:56:51 2019
@@ -41,7 +41,7 @@ Use the command below to check the versi
 
 #### Hadoop ####
 
-Knox 1.3.0 supports Hadoop 2.x and 3.x, the quick start instructions assume a Hadoop 2.x virtual machine based environment.
+Knox 1.4.0 supports Hadoop 2.x and 3.x, the quick start instructions assume a Hadoop 2.x virtual machine based environment.
 
 
 ### 2 - Download Hadoop 2.x VM ###
@@ -53,18 +53,18 @@ Configuring Knox for Hadoop 2.x version,
 
 Download one of the distributions below from the [Apache mirrors][mirror].
 
-* Source archive: [knox-1.3.0-src.zip][src-zip] ([PGP signature][src-pgp], [SHA1 digest][src-sha], [MD5 digest][src-md5])
-* Binary archive: [knox-1.3.0.zip][bin-zip] ([PGP signature][bin-pgp], [SHA1 digest][bin-sha], [MD5 digest][bin-md5])
+* Source archive: [knox-1.4.0-src.zip][src-zip] ([PGP signature][src-pgp], [SHA1 digest][src-sha], [MD5 digest][src-md5])
+* Binary archive: [knox-1.4.0.zip][bin-zip] ([PGP signature][bin-pgp], [SHA1 digest][bin-sha], [MD5 digest][bin-md5])
 
 [keys]: https://dist.apache.org/repos/dist/release/knox/KEYS 
-[src-zip]: http://www.apache.org/dyn/closer.cgi/knox/1.3.0/knox-1.3.0-src.zip
-[src-sha]: http://www.apache.org/dist/knox/1.3.0/knox-1.3.0-src.zip.sha1
-[src-pgp]: http://www.apache.org/dist/knox/1.3.0/knox-1.3.0-src.zip.asc
-[src-md5]: http://www.apache.org/dist/knox/1.3.0/knox-1.3.0-src.zip.md5
-[bin-zip]: http://www.apache.org/dyn/closer.cgi/knox/1.3.0/knox-1.3.0.zip
-[bin-pgp]: http://www.apache.org/dist/knox/1.3.0/knox-1.3.0.zip.asc
-[bin-sha]: http://www.apache.org/dist/knox/1.3.0/knox-1.3.0.zip.sha1
-[bin-md5]: http://www.apache.org/dist/knox/1.3.0/knox-1.3.0.zip.md5
+[src-zip]: http://www.apache.org/dyn/closer.cgi/knox/1.4.0/knox-1.4.0-src.zip
+[src-sha]: http://www.apache.org/dist/knox/1.4.0/knox-1.4.0-src.zip.sha1
+[src-pgp]: http://www.apache.org/dist/knox/1.4.0/knox-1.4.0-src.zip.asc
+[src-md5]: http://www.apache.org/dist/knox/1.4.0/knox-1.4.0-src.zip.md5
+[bin-zip]: http://www.apache.org/dyn/closer.cgi/knox/1.4.0/knox-1.4.0.zip
+[bin-pgp]: http://www.apache.org/dist/knox/1.4.0/knox-1.4.0.zip.asc
+[bin-sha]: http://www.apache.org/dist/knox/1.4.0/knox-1.4.0.zip.sha1
+[bin-md5]: http://www.apache.org/dist/knox/1.4.0/knox-1.4.0.zip.md5
 
 Apache Knox Gateway releases are available under the [Apache License, Version 2.0][asl].
 See the NOTICE file contained in each release artifact for applicable copyright attribution notices.
@@ -81,17 +81,17 @@ Make sure you get these files from the m
 Then verify the signatures using one of the methods below.
 
     % pgpk -a KEYS
-    % pgpv knox-1.3.0.zip.asc
+    % pgpv knox-1.4.0.zip.asc
 
 or
 
     % pgp -ka KEYS
-    % pgp knox-1.3.0.zip.asc
+    % pgp knox-1.4.0.zip.asc
 
 or
 
     % gpg --import KEYS
-    % gpg --verify knox-1.3.0.zip.asc
+    % gpg --verify knox-1.4.0.zip.asc
 
 ### 4 - Start Hadoop virtual machine ###
 
@@ -108,7 +108,7 @@ This directory will be referred to as yo
 If you downloaded the Zip distribution you can simply extract the contents into a directory.
 The example below provides a command that can be executed to do this.
 Note the `{VERSION}` portion of the command must be replaced with an actual Apache Knox Gateway version number.
-This might be 1.3.0 for example.
+This might be 1.4.0 for example.
 
     unzip knox-{VERSION}.zip
 

Modified: knox/trunk/build.xml
URL: http://svn.apache.org/viewvc/knox/trunk/build.xml?rev=1863715&r1=1863714&r2=1863715&view=diff
==============================================================================
--- knox/trunk/build.xml (original)
+++ knox/trunk/build.xml Wed Jul 24 18:56:51 2019
@@ -26,19 +26,6 @@
     <property name="gateway-artifact" value="${gateway-project}"/>
     <property name="release-manager" value="kminder"/>
     <property name="book-target" value="../site/books"/>
-    <property name="book-0-3-0-dir" value="${book-target}/${gateway-artifact}-0-3-0"/>
-    <property name="book-0-3-0-file" value="${book-0-3-0-dir}/${gateway-artifact}-0-3-0.html"/>
-    <property name="book-0-4-0-dir" value="${book-target}/${gateway-artifact}-0-4-0"/>
-    <property name="book-0-4-0-file" value="${book-0-4-0-dir}/${gateway-artifact}-0-4-0.html"/>
-    <property name="book-0-5-0-dir" value="${book-target}/${gateway-artifact}-0-5-0"/>
-    <property name="book-0-5-0-file" value="${book-0-5-0-dir}/${gateway-artifact}-0-5-0.html"/>
-    <property name="book-0-6-0-dir" value="${book-target}/${gateway-artifact}-0-6-0"/>
-    <property name="book-0-7-0-dir" value="${book-target}/${gateway-artifact}-0-7-0"/>
-    <property name="book-0-8-0-dir" value="${book-target}/${gateway-artifact}-0-8-0"/>
-    <property name="book-0-9-0-dir" value="${book-target}/${gateway-artifact}-0-9-0"/>
-    <property name="book-0-9-1-dir" value="${book-target}/${gateway-artifact}-0-9-1"/>
-    <property name="book-0-10-0-dir" value="${book-target}/${gateway-artifact}-0-10-0"/>
-    <property name="book-0-11-0-dir" value="${book-target}/${gateway-artifact}-0-11-0"/>
     <property name="book-0-12-0-dir" value="${book-target}/${gateway-artifact}-0-12-0"/>
     <property name="book-0-13-0-dir" value="${book-target}/${gateway-artifact}-0-13-0"/>
     <property name="book-0-14-0-dir" value="${book-target}/${gateway-artifact}-0-14-0"/>
@@ -248,7 +235,7 @@
         <copy todir="${book-target}/${gateway-artifact}-1-4-0">
             <fileset dir="books/static"/>
         </copy>
-        <copy todir="${book-target}/${gateway-artifact}-1-3-0/adminui">
+        <copy todir="${book-target}/${gateway-artifact}-1-4-0/adminui">
             <fileset dir="books/1.4.0/img/adminui"/>
         </copy>
     </target>