You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2018/08/07 09:50:49 UTC

[myfaces-tobago] branch master updated: TOBAGO-1913: Enhance tobago-config.xsd: there should be an includes tag in resources tag

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

lofwyr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git


The following commit(s) were added to refs/heads/master by this push:
     new 304e04d  TOBAGO-1913: Enhance tobago-config.xsd: there should be an includes tag in resources tag
304e04d is described below

commit 304e04d67db4b27f01d0e105bd0f5942fc069d16
Author: Udo Schnurpfeil <lo...@apache.org>
AuthorDate: Tue Aug 7 11:50:32 2018 +0200

    TOBAGO-1913: Enhance tobago-config.xsd: there should be an includes tag in resources tag
---
 .../tobago/internal/config/TobagoConfigParser.java |  3 +
 .../src/main/resources/META-INF/tobago-config.xml  |  4 +-
 .../myfaces/tobago/config/tobago-config-4.3.xsd    |  5 +-
 .../src/main/webapp/WEB-INF/tobago-config.xml      |  4 +-
 .../src/main/resources/META-INF/tobago-config.xml  | 16 ++--
 .../src/main/resources/META-INF/tobago-config.xml  | 16 ++--
 .../src/main/resources/META-INF/tobago-config.xml  | 16 ++--
 .../src/main/resources/META-INF/tobago-config.xml  | 16 ++--
 .../src/main/resources/META-INF/tobago-config.xml  | 90 +++++++++++-----------
 9 files changed, 97 insertions(+), 73 deletions(-)

diff --git a/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/config/TobagoConfigParser.java b/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/config/TobagoConfigParser.java
index c26940a..ec29625 100644
--- a/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/config/TobagoConfigParser.java
+++ b/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/config/TobagoConfigParser.java
@@ -90,6 +90,7 @@ public class TobagoConfigParser extends TobagoConfigEntityResolver {
   private static final int FALLBACK = 761243362;
   private static final int VERSIONED = -1407102089;
   private static final int RESOURCES = -1983070683;
+  private static final int INCLUDES = 90259659;
   private static final int EXCLUDES = 1994055129;
   private static final int SANITIZER = 1807639849;
   private static final int SANITIZER_CLASS = -974266412;
@@ -255,6 +256,7 @@ public class TobagoConfigParser extends TobagoConfigEntityResolver {
       case TYPE:
       case RENDERERS:
       case RENDERER:
+      case INCLUDES:
         // nothing to do
         break;
 
@@ -418,6 +420,7 @@ public class TobagoConfigParser extends TobagoConfigEntityResolver {
       case PROPERTIES:
       case MIME_TYPES:
       case MARKUP:
+      case INCLUDES:
         // nothing to do
         break;
 
diff --git a/tobago-core/src/main/resources/META-INF/tobago-config.xml b/tobago-core/src/main/resources/META-INF/tobago-config.xml
index ec4662a..3ec4891 100644
--- a/tobago-core/src/main/resources/META-INF/tobago-config.xml
+++ b/tobago-core/src/main/resources/META-INF/tobago-config.xml
@@ -20,8 +20,8 @@
 <tobago-config
     xmlns="http://myfaces.apache.org/tobago/tobago-config"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xsi:schemaLocation="http://myfaces.apache.org/tobago/tobago-config http://myfaces.apache.org/tobago/tobago-config-4.0.xsd"
-    version="4.0">
+    xsi:schemaLocation="http://myfaces.apache.org/tobago/tobago-config http://myfaces.apache.org/tobago/tobago-config-4.3.xsd"
+    version="4.3">
 
   <name>tobago-config</name>
 
diff --git a/tobago-core/src/main/resources/org/apache/myfaces/tobago/config/tobago-config-4.3.xsd b/tobago-core/src/main/resources/org/apache/myfaces/tobago/config/tobago-config-4.3.xsd
index b607fd7..127fcc9 100644
--- a/tobago-core/src/main/resources/org/apache/myfaces/tobago/config/tobago-config-4.3.xsd
+++ b/tobago-core/src/main/resources/org/apache/myfaces/tobago/config/tobago-config-4.3.xsd
@@ -334,14 +334,15 @@
       </xs:documentation>
     </xs:annotation>
     <xs:sequence>
-      <xs:element name="excludes" type="tobago:excludes-type" minOccurs="0"/>
+      <xs:element name="includes" type="tobago:includes-excludes-type" minOccurs="0"/>
+      <xs:element name="excludes" type="tobago:includes-excludes-type" minOccurs="0"/>
       <xs:element name="script" type="tobago:script-type" minOccurs="0" maxOccurs="unbounded"/>
       <xs:element name="style" type="tobago:style-type" minOccurs="0" maxOccurs="unbounded"/>
     </xs:sequence>
     <xs:attribute name="production" type="xs:boolean" use="required"/>
   </xs:complexType>
 
-  <xs:complexType name="excludes-type">
+  <xs:complexType name="includes-excludes-type">
     <xs:sequence>
       <xs:element name="script" type="tobago:script-type" minOccurs="0" maxOccurs="unbounded"/>
       <xs:element name="style" type="tobago:style-type" minOccurs="0" maxOccurs="unbounded"/>
diff --git a/tobago-example/tobago-example-blank/src/main/webapp/WEB-INF/tobago-config.xml b/tobago-example/tobago-example-blank/src/main/webapp/WEB-INF/tobago-config.xml
index 6756dd6..e4839f5 100644
--- a/tobago-example/tobago-example-blank/src/main/webapp/WEB-INF/tobago-config.xml
+++ b/tobago-example/tobago-example-blank/src/main/webapp/WEB-INF/tobago-config.xml
@@ -20,8 +20,8 @@
 <tobago-config
     xmlns="http://myfaces.apache.org/tobago/tobago-config"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xsi:schemaLocation="http://myfaces.apache.org/tobago/tobago-config http://myfaces.apache.org/tobago/tobago-config-4.0.xsd"
-    version="4.0">
+    xsi:schemaLocation="http://myfaces.apache.org/tobago/tobago-config http://myfaces.apache.org/tobago/tobago-config-4.3.xsd"
+    version="4.3">
 
   <theme-config>
     <default-theme>standard</default-theme>
diff --git a/tobago-theme/tobago-theme-charlotteville/src/main/resources/META-INF/tobago-config.xml b/tobago-theme/tobago-theme-charlotteville/src/main/resources/META-INF/tobago-config.xml
index 99d749f..a43f998 100644
--- a/tobago-theme/tobago-theme-charlotteville/src/main/resources/META-INF/tobago-config.xml
+++ b/tobago-theme/tobago-theme-charlotteville/src/main/resources/META-INF/tobago-config.xml
@@ -20,8 +20,8 @@
 <tobago-config
     xmlns="http://myfaces.apache.org/tobago/tobago-config"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xsi:schemaLocation="http://myfaces.apache.org/tobago/tobago-config http://myfaces.apache.org/tobago/tobago-config-4.0.xsd"
-    version="4.0">
+    xsi:schemaLocation="http://myfaces.apache.org/tobago/tobago-config http://myfaces.apache.org/tobago/tobago-config-4.3.xsd"
+    version="4.3">
   <name>tobago-theme-charlotteville</name>
   <ordering>
     <after>
@@ -35,20 +35,24 @@
       <fallback>standard</fallback>
       <versioned>true</versioned>
       <resources production="true">
+        <includes>
+          <script name="/tobago/charlotteville/tobago-bootstrap/${project.version}/js/bootstrap.min.js"/>
+          <style name="/tobago/charlotteville/tobago-bootstrap/${project.version}/css/bootstrap.min.css"/>
+        </includes>
         <excludes>
           <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/bootstrap.min.js"/>
           <style name="/tobago/standard/tobago-bootstrap/${project.version}/css/bootstrap.min.css"/>
         </excludes>
-        <script name="/tobago/charlotteville/tobago-bootstrap/${project.version}/js/bootstrap.min.js"/>
-        <style name="/tobago/charlotteville/tobago-bootstrap/${project.version}/css/bootstrap.min.css"/>
       </resources>
       <resources production="false">
+        <includes>
+          <script name="/tobago/charlotteville/tobago-bootstrap/${project.version}/js/bootstrap.js"/>
+          <style name="/tobago/charlotteville/tobago-bootstrap/${project.version}/css/bootstrap.css"/>
+        </includes>
         <excludes>
           <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/bootstrap.js"/>
           <style name="/tobago/standard/tobago-bootstrap/${project.version}/css/bootstrap.css"/>
         </excludes>
-        <script name="/tobago/charlotteville/tobago-bootstrap/${project.version}/js/bootstrap.js"/>
-        <style name="/tobago/charlotteville/tobago-bootstrap/${project.version}/css/bootstrap.css"/>
       </resources>
     </theme-definition>
   </theme-definitions>
diff --git a/tobago-theme/tobago-theme-roxborough/src/main/resources/META-INF/tobago-config.xml b/tobago-theme/tobago-theme-roxborough/src/main/resources/META-INF/tobago-config.xml
index 10f3eb5..9165fb2 100644
--- a/tobago-theme/tobago-theme-roxborough/src/main/resources/META-INF/tobago-config.xml
+++ b/tobago-theme/tobago-theme-roxborough/src/main/resources/META-INF/tobago-config.xml
@@ -20,8 +20,8 @@
 <tobago-config
     xmlns="http://myfaces.apache.org/tobago/tobago-config"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xsi:schemaLocation="http://myfaces.apache.org/tobago/tobago-config http://myfaces.apache.org/tobago/tobago-config-4.0.xsd"
-    version="4.0">
+    xsi:schemaLocation="http://myfaces.apache.org/tobago/tobago-config http://myfaces.apache.org/tobago/tobago-config-4.3.xsd"
+    version="4.3">
   <name>tobago-theme-roxborough</name>
   <ordering>
     <after>
@@ -35,20 +35,24 @@
       <fallback>standard</fallback>
       <versioned>true</versioned>
       <resources production="true">
+        <includes>
+          <script name="/tobago/roxborough/tobago-bootstrap/${project.version}/js/bootstrap.min.js"/>
+          <style name="/tobago/roxborough/tobago-bootstrap/${project.version}/css/bootstrap.min.css"/>
+        </includes>
         <excludes>
           <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/bootstrap.min.js"/>
           <style name="/tobago/standard/tobago-bootstrap/${project.version}/css/bootstrap.min.css"/>
         </excludes>
-        <script name="/tobago/roxborough/tobago-bootstrap/${project.version}/js/bootstrap.min.js"/>
-        <style name="/tobago/roxborough/tobago-bootstrap/${project.version}/css/bootstrap.min.css"/>
       </resources>
       <resources production="false">
+        <includes>
+          <script name="/tobago/roxborough/tobago-bootstrap/${project.version}/js/bootstrap.js"/>
+          <style name="/tobago/roxborough/tobago-bootstrap/${project.version}/css/bootstrap.css"/>
+        </includes>
         <excludes>
           <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/bootstrap.js"/>
           <style name="/tobago/standard/tobago-bootstrap/${project.version}/css/bootstrap.css"/>
         </excludes>
-        <script name="/tobago/roxborough/tobago-bootstrap/${project.version}/js/bootstrap.js"/>
-        <style name="/tobago/roxborough/tobago-bootstrap/${project.version}/css/bootstrap.css"/>
       </resources>
     </theme-definition>
   </theme-definitions>
diff --git a/tobago-theme/tobago-theme-scarborough/src/main/resources/META-INF/tobago-config.xml b/tobago-theme/tobago-theme-scarborough/src/main/resources/META-INF/tobago-config.xml
index afcab6d..5c91d92 100644
--- a/tobago-theme/tobago-theme-scarborough/src/main/resources/META-INF/tobago-config.xml
+++ b/tobago-theme/tobago-theme-scarborough/src/main/resources/META-INF/tobago-config.xml
@@ -20,8 +20,8 @@
 <tobago-config
     xmlns="http://myfaces.apache.org/tobago/tobago-config"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xsi:schemaLocation="http://myfaces.apache.org/tobago/tobago-config http://myfaces.apache.org/tobago/tobago-config-4.0.xsd"
-    version="4.0">
+    xsi:schemaLocation="http://myfaces.apache.org/tobago/tobago-config http://myfaces.apache.org/tobago/tobago-config-4.3.xsd"
+    version="4.3">
   <name>tobago-theme-scarborough</name>
   <ordering>
     <after>
@@ -35,20 +35,24 @@
       <fallback>standard</fallback>
       <versioned>true</versioned>
       <resources production="true">
+        <includes>
+          <script name="/tobago/scarborough/tobago-bootstrap/${project.version}/js/bootstrap.min.js"/>
+          <style name="/tobago/scarborough/tobago-bootstrap/${project.version}/css/bootstrap.min.css"/>
+        </includes>
         <excludes>
           <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/bootstrap.min.js"/>
           <style name="/tobago/standard/tobago-bootstrap/${project.version}/css/bootstrap.min.css"/>
         </excludes>
-        <script name="/tobago/scarborough/tobago-bootstrap/${project.version}/js/bootstrap.min.js"/>
-        <style name="/tobago/scarborough/tobago-bootstrap/${project.version}/css/bootstrap.min.css"/>
       </resources>
       <resources production="false">
+        <includes>
+          <script name="/tobago/scarborough/tobago-bootstrap/${project.version}/js/bootstrap.js"/>
+          <style name="/tobago/scarborough/tobago-bootstrap/${project.version}/css/bootstrap.css"/>
+        </includes>
         <excludes>
           <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/bootstrap.js"/>
           <style name="/tobago/standard/tobago-bootstrap/${project.version}/css/bootstrap.css"/>
         </excludes>
-        <script name="/tobago/scarborough/tobago-bootstrap/${project.version}/js/bootstrap.js"/>
-        <style name="/tobago/scarborough/tobago-bootstrap/${project.version}/css/bootstrap.css"/>
       </resources>
     </theme-definition>
   </theme-definitions>
diff --git a/tobago-theme/tobago-theme-speyside/src/main/resources/META-INF/tobago-config.xml b/tobago-theme/tobago-theme-speyside/src/main/resources/META-INF/tobago-config.xml
index c9b7418..6062f44 100644
--- a/tobago-theme/tobago-theme-speyside/src/main/resources/META-INF/tobago-config.xml
+++ b/tobago-theme/tobago-theme-speyside/src/main/resources/META-INF/tobago-config.xml
@@ -20,8 +20,8 @@
 <tobago-config
     xmlns="http://myfaces.apache.org/tobago/tobago-config"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xsi:schemaLocation="http://myfaces.apache.org/tobago/tobago-config http://myfaces.apache.org/tobago/tobago-config-4.0.xsd"
-    version="4.0">
+    xsi:schemaLocation="http://myfaces.apache.org/tobago/tobago-config http://myfaces.apache.org/tobago/tobago-config-4.3.xsd"
+    version="4.3">
   <name>tobago-theme-speyside</name>
   <ordering>
     <after>
@@ -35,20 +35,24 @@
       <fallback>standard</fallback>
       <versioned>true</versioned>
       <resources production="true">
+        <includes>
+          <script name="/tobago/speyside/tobago-bootstrap/${project.version}/js/bootstrap.min.js"/>
+          <style name="/tobago/speyside/tobago-bootstrap/${project.version}/css/bootstrap.min.css"/>
+        </includes>
         <excludes>
           <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/bootstrap.min.js"/>
           <style name="/tobago/standard/tobago-bootstrap/${project.version}/css/bootstrap.min.css"/>
         </excludes>
-        <script name="/tobago/speyside/tobago-bootstrap/${project.version}/js/bootstrap.min.js"/>
-        <style name="/tobago/speyside/tobago-bootstrap/${project.version}/css/bootstrap.min.css"/>
       </resources>
       <resources production="false">
+        <includes>
+          <script name="/tobago/speyside/tobago-bootstrap/${project.version}/js/bootstrap.js"/>
+          <style name="/tobago/speyside/tobago-bootstrap/${project.version}/css/bootstrap.css"/>
+        </includes>
         <excludes>
           <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/bootstrap.js"/>
           <style name="/tobago/standard/tobago-bootstrap/${project.version}/css/bootstrap.css"/>
         </excludes>
-        <script name="/tobago/speyside/tobago-bootstrap/${project.version}/js/bootstrap.js"/>
-        <style name="/tobago/speyside/tobago-bootstrap/${project.version}/css/bootstrap.css"/>
       </resources>
     </theme-definition>
   </theme-definitions>
diff --git a/tobago-theme/tobago-theme-standard/src/main/resources/META-INF/tobago-config.xml b/tobago-theme/tobago-theme-standard/src/main/resources/META-INF/tobago-config.xml
index 0aef60b..000f898 100644
--- a/tobago-theme/tobago-theme-standard/src/main/resources/META-INF/tobago-config.xml
+++ b/tobago-theme/tobago-theme-standard/src/main/resources/META-INF/tobago-config.xml
@@ -20,8 +20,8 @@
 <tobago-config
     xmlns="http://myfaces.apache.org/tobago/tobago-config"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xsi:schemaLocation="http://myfaces.apache.org/tobago/tobago-config http://myfaces.apache.org/tobago/tobago-config-4.0.xsd"
-    version="4.0">
+    xsi:schemaLocation="http://myfaces.apache.org/tobago/tobago-config http://myfaces.apache.org/tobago/tobago-config-4.3.xsd"
+    version="4.3">
 
   <name>tobago-theme-standard</name>
 
@@ -37,49 +37,53 @@
       <display-name>Standard Theme</display-name>
       <versioned>true</versioned>
       <resources production="true">
-        <script name="/tobago/standard/jquery/jquery-3.3.1.min.js"/>
-        <script name="/tobago/standard/jquery-ui/1.12.1.custom/jquery-ui.min.js"/>
-        <script name="/tobago/standard/tether/1.1.1/js/tether.min.js"/>
-        <script name="/tobago/standard/popper-js/1.12.3/popper.min.js"/>
-        <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/bootstrap.min.js"/>
-        <script name="/tobago/standard/moment/2.13.0/moment-with-locales.min.js"/>
-        <script name="/tobago/standard/bootstrap-datetimepicker/4.17.45/js/bootstrap-datetimepicker.min.js"/>
-        <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/tobago.min.js"/>
-        <script name="/tobago/standard/typeahead/0.11.1-patched-with-1212/typeahead.min.js"/>
-        <style name="/tobago/standard/tether/1.1.1/css/tether.min.css"/>
-        <style name="/tobago/standard/tobago-bootstrap/${project.version}/css/bootstrap.min.css"/>
-        <style name="/tobago/standard/font-awesome/4.7.0/css/font-awesome.min.css"/>
-        <style name="/tobago/standard/bootstrap-datetimepicker/4.17.45/css/bootstrap-datetimepicker.min.css"/>
+        <includes>
+          <script name="/tobago/standard/jquery/jquery-3.3.1.min.js"/>
+          <script name="/tobago/standard/jquery-ui/1.12.1.custom/jquery-ui.min.js"/>
+          <script name="/tobago/standard/tether/1.1.1/js/tether.min.js"/>
+          <script name="/tobago/standard/popper-js/1.12.3/popper.min.js"/>
+          <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/bootstrap.min.js"/>
+          <script name="/tobago/standard/moment/2.13.0/moment-with-locales.min.js"/>
+          <script name="/tobago/standard/bootstrap-datetimepicker/4.17.45/js/bootstrap-datetimepicker.min.js"/>
+          <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/tobago.min.js"/>
+          <script name="/tobago/standard/typeahead/0.11.1-patched-with-1212/typeahead.min.js"/>
+          <style name="/tobago/standard/tether/1.1.1/css/tether.min.css"/>
+          <style name="/tobago/standard/tobago-bootstrap/${project.version}/css/bootstrap.min.css"/>
+          <style name="/tobago/standard/font-awesome/4.7.0/css/font-awesome.min.css"/>
+          <style name="/tobago/standard/bootstrap-datetimepicker/4.17.45/css/bootstrap-datetimepicker.min.css"/>
+        </includes>
       </resources>
       <resources production="false">
-        <script name="/tobago/standard/jquery/jquery-3.3.1.js"/>
-        <script name="/tobago/standard/jquery-ui/1.12.1.custom/jquery-ui.js"/>
-        <script name="/tobago/standard/tether/1.1.1/js/tether.js"/>
-        <script name="/tobago/standard/popper-js/1.12.3/popper.js"/>
-        <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/bootstrap.js"/>
-        <script name="/tobago/standard/moment/2.13.0/moment-with-locales.js"/>
-        <script name="/tobago/standard/bootstrap-datetimepicker/4.17.45/js/bootstrap-datetimepicker.js"/>
-        <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/tobago-jsf.js"/>
-        <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/tobago-deltaspike.js"/>
-        <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/tobago.js"/>
-        <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/tobago-dropdown.js"/>
-        <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/tobago-calendar.js"/>
-        <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/tobago-console.js"/>
-        <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/tobago-in.js"/>
-        <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/tobago-layout.js"/>
-        <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/tobago-overlay.js"/>
-        <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/tobago-popup.js"/>
-        <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/tobago-sheet.js"/>
-        <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/tobago-stars.js"/>
-        <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/tobago-suggest.js"/>
-        <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/tobago-tab.js"/>
-        <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/tobago-tree.js"/>
-        <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/tobago-utils.js"/>
-        <script name="/tobago/standard/typeahead/0.11.1-patched-with-1212/typeahead.js"/>
-        <style name="/tobago/standard/tether/1.1.1/css/tether.css"/>
-        <style name="/tobago/standard/tobago-bootstrap/${project.version}/css/bootstrap.css"/>
-        <style name="/tobago/standard/font-awesome/4.7.0/css/font-awesome.css"/>
-        <style name="/tobago/standard/bootstrap-datetimepicker/4.17.45/css/bootstrap-datetimepicker.css"/>
+        <includes>
+          <script name="/tobago/standard/jquery/jquery-3.3.1.js"/>
+          <script name="/tobago/standard/jquery-ui/1.12.1.custom/jquery-ui.js"/>
+          <script name="/tobago/standard/tether/1.1.1/js/tether.js"/>
+          <script name="/tobago/standard/popper-js/1.12.3/popper.js"/>
+          <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/bootstrap.js"/>
+          <script name="/tobago/standard/moment/2.13.0/moment-with-locales.js"/>
+          <script name="/tobago/standard/bootstrap-datetimepicker/4.17.45/js/bootstrap-datetimepicker.js"/>
+          <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/tobago-jsf.js"/>
+          <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/tobago-deltaspike.js"/>
+          <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/tobago.js"/>
+          <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/tobago-dropdown.js"/>
+          <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/tobago-calendar.js"/>
+          <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/tobago-console.js"/>
+          <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/tobago-in.js"/>
+          <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/tobago-layout.js"/>
+          <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/tobago-overlay.js"/>
+          <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/tobago-popup.js"/>
+          <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/tobago-sheet.js"/>
+          <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/tobago-stars.js"/>
+          <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/tobago-suggest.js"/>
+          <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/tobago-tab.js"/>
+          <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/tobago-tree.js"/>
+          <script name="/tobago/standard/tobago-bootstrap/${project.version}/js/tobago-utils.js"/>
+          <script name="/tobago/standard/typeahead/0.11.1-patched-with-1212/typeahead.js"/>
+          <style name="/tobago/standard/tether/1.1.1/css/tether.css"/>
+          <style name="/tobago/standard/tobago-bootstrap/${project.version}/css/bootstrap.css"/>
+          <style name="/tobago/standard/font-awesome/4.7.0/css/font-awesome.css"/>
+          <style name="/tobago/standard/bootstrap-datetimepicker/4.17.45/css/bootstrap-datetimepicker.css"/>
+        </includes>
       </resources>
     </theme-definition>
   </theme-definitions>