You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by cd...@apache.org on 2016/10/21 09:07:16 UTC

[03/49] git commit: [flex-asjs] [refs/heads/feature-autobuild/maven-archetypes] - replace old way of packing JS files for now

replace old way of packing JS files for now


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/a57fc484
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/a57fc484
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/a57fc484

Branch: refs/heads/feature-autobuild/maven-archetypes
Commit: a57fc484423ec66b7dd4388b28eb244d0cecc944
Parents: bb4a799
Author: Alex Harui <ah...@apache.org>
Authored: Tue Oct 4 09:43:12 2016 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Tue Oct 4 09:43:12 2016 -0700

----------------------------------------------------------------------
 frameworks/projects/Binding/pom.xml     | 6 ++++++
 frameworks/projects/Charts/pom.xml      | 4 ++++
 frameworks/projects/Collections/pom.xml | 6 ++++++
 frameworks/projects/Core/pom.xml        | 6 ++++++
 frameworks/projects/CreateJS/pom.xml    | 4 ++++
 frameworks/projects/DragDrop/pom.xml    | 6 ++++++
 frameworks/projects/Effects/pom.xml     | 6 ++++++
 frameworks/projects/Flat/pom.xml        | 4 ++++
 frameworks/projects/Formatters/pom.xml  | 6 ++++++
 frameworks/projects/GoogleMaps/pom.xml  | 4 ++++
 frameworks/projects/Graphics/pom.xml    | 6 ++++++
 frameworks/projects/HTML/pom.xml        | 4 ++++
 frameworks/projects/HTML5/pom.xml       | 4 ++++
 frameworks/projects/JQuery/pom.xml      | 4 ++++
 frameworks/projects/Language/pom.xml    | 6 ++++++
 frameworks/projects/Mobile/pom.xml      | 4 ++++
 frameworks/projects/Network/pom.xml     | 6 ++++++
 frameworks/projects/Reflection/pom.xml  | 6 ++++++
 frameworks/projects/Storage/pom.xml     | 4 ++++
 frameworks/projects/XML/pom.xml         | 6 ++++++
 20 files changed, 102 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/a57fc484/frameworks/projects/Binding/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/Binding/pom.xml b/frameworks/projects/Binding/pom.xml
index 347c232..dfcb04b 100644
--- a/frameworks/projects/Binding/pom.xml
+++ b/frameworks/projects/Binding/pom.xml
@@ -48,6 +48,12 @@
             </namespace>
           </namespaces>
           <includeSources>true</includeSources>
+          <includeFiles>
+            <include-file>
+              <name>js/out/*</name>
+              <path>generated-sources/flexjs/*</path>
+            </include-file>
+          </includeFiles>
         </configuration>
       </plugin>
     </plugins>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/a57fc484/frameworks/projects/Charts/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/Charts/pom.xml b/frameworks/projects/Charts/pom.xml
index 2b4424e..394fcfe 100644
--- a/frameworks/projects/Charts/pom.xml
+++ b/frameworks/projects/Charts/pom.xml
@@ -55,6 +55,10 @@
               <name>defaults.css</name>
               <path>../src/main/resources/defaults.css</path>
             </include-file>
+            <include-file>
+              <name>js/out/*</name>
+              <path>generated-sources/flexjs/*</path>
+            </include-file>
           </includeFiles>
         </configuration>
       </plugin>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/a57fc484/frameworks/projects/Collections/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/Collections/pom.xml b/frameworks/projects/Collections/pom.xml
index f6d6af5..fd3b3ed 100644
--- a/frameworks/projects/Collections/pom.xml
+++ b/frameworks/projects/Collections/pom.xml
@@ -50,6 +50,12 @@
           <includeClasses>
             <includeClass>CollectionsClasses</includeClass>
           </includeClasses>
+          <includeFiles>
+            <include-file>
+              <name>js/out/*</name>
+              <path>generated-sources/flexjs/*</path>
+            </include-file>
+          </includeFiles>
         </configuration>
       </plugin>
     </plugins>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/a57fc484/frameworks/projects/Core/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/Core/pom.xml b/frameworks/projects/Core/pom.xml
index 16797fc..6ca9a6d 100644
--- a/frameworks/projects/Core/pom.xml
+++ b/frameworks/projects/Core/pom.xml
@@ -50,6 +50,12 @@
           <includeClasses>
             <includeClass>CoreClasses</includeClass>
           </includeClasses>
+          <includeFiles>
+            <include-file>
+              <name>js/out/*</name>
+              <path>generated-sources/flexjs/*</path>
+            </include-file>
+          </includeFiles>
           <skipExtern>false</skipExtern>
         </configuration>
       </plugin>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/a57fc484/frameworks/projects/CreateJS/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/CreateJS/pom.xml b/frameworks/projects/CreateJS/pom.xml
index cd1c3ae..a550a17 100644
--- a/frameworks/projects/CreateJS/pom.xml
+++ b/frameworks/projects/CreateJS/pom.xml
@@ -55,6 +55,10 @@
               <name>defaults.css</name>
               <path>../src/main/resources/defaults.css</path>
             </include-file>
+            <include-file>
+              <name>js/out/*</name>
+              <path>generated-sources/flexjs/*</path>
+            </include-file>
           </includeFiles>
         </configuration>
       </plugin>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/a57fc484/frameworks/projects/DragDrop/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/DragDrop/pom.xml b/frameworks/projects/DragDrop/pom.xml
index d3a9cff..7470cab 100644
--- a/frameworks/projects/DragDrop/pom.xml
+++ b/frameworks/projects/DragDrop/pom.xml
@@ -50,6 +50,12 @@
           <includeClasses>
             <includeClass>DragDropClasses</includeClass>
           </includeClasses>
+          <includeFiles>
+            <include-file>
+              <name>js/out/*</name>
+              <path>generated-sources/flexjs/*</path>
+            </include-file>
+          </includeFiles>
         </configuration>
       </plugin>
     </plugins>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/a57fc484/frameworks/projects/Effects/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/Effects/pom.xml b/frameworks/projects/Effects/pom.xml
index eab99ae..f993c99 100644
--- a/frameworks/projects/Effects/pom.xml
+++ b/frameworks/projects/Effects/pom.xml
@@ -50,6 +50,12 @@
           <includeClasses>
             <includeClass>EffectsClasses</includeClass>
           </includeClasses>
+          <includeFiles>
+            <include-file>
+              <name>js/out/*</name>
+              <path>generated-sources/flexjs/*</path>
+            </include-file>
+          </includeFiles>
         </configuration>
       </plugin>
     </plugins>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/a57fc484/frameworks/projects/Flat/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/Flat/pom.xml b/frameworks/projects/Flat/pom.xml
index 36f8fee..511cc2f 100644
--- a/frameworks/projects/Flat/pom.xml
+++ b/frameworks/projects/Flat/pom.xml
@@ -60,6 +60,10 @@
               <name>defaults.css</name>
               <path>../src/main/resources/defaults.css</path>
             </include-file>
+            <include-file>
+              <name>js/out/*</name>
+              <path>generated-sources/flexjs/*</path>
+            </include-file>
           </includeFiles>
           <includeLookupOnly>true</includeLookupOnly>
         </configuration>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/a57fc484/frameworks/projects/Formatters/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/Formatters/pom.xml b/frameworks/projects/Formatters/pom.xml
index 8fd94d0..417c4db 100644
--- a/frameworks/projects/Formatters/pom.xml
+++ b/frameworks/projects/Formatters/pom.xml
@@ -50,6 +50,12 @@
           <includeClasses>
             <includeClass>FormattersClasses</includeClass>
           </includeClasses>
+          <includeFiles>
+            <include-file>
+              <name>js/out/*</name>
+              <path>generated-sources/flexjs/*</path>
+            </include-file>
+          </includeFiles>
         </configuration>
       </plugin>
     </plugins>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/a57fc484/frameworks/projects/GoogleMaps/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/GoogleMaps/pom.xml b/frameworks/projects/GoogleMaps/pom.xml
index 915bab7..f4bce2a 100644
--- a/frameworks/projects/GoogleMaps/pom.xml
+++ b/frameworks/projects/GoogleMaps/pom.xml
@@ -56,6 +56,10 @@
               <name>defaults.css</name>
               <path>../src/main/resources/defaults.css</path>
             </include-file>
+            <include-file>
+              <name>js/out/*</name>
+              <path>generated-sources/flexjs/*</path>
+            </include-file>
           </includeFiles>
         </configuration>
       </plugin>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/a57fc484/frameworks/projects/Graphics/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/Graphics/pom.xml b/frameworks/projects/Graphics/pom.xml
index 75d7339..52caac8 100644
--- a/frameworks/projects/Graphics/pom.xml
+++ b/frameworks/projects/Graphics/pom.xml
@@ -54,6 +54,12 @@
           <includeClasses>
             <includeClass>GraphicsClasses</includeClass>
           </includeClasses>
+          <includeFiles>
+            <include-file>
+              <name>js/out/*</name>
+              <path>generated-sources/flexjs/*</path>
+            </include-file>
+          </includeFiles>
         </configuration>
       </plugin>
     </plugins>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/a57fc484/frameworks/projects/HTML/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/HTML/pom.xml b/frameworks/projects/HTML/pom.xml
index 5eab490..613755a 100644
--- a/frameworks/projects/HTML/pom.xml
+++ b/frameworks/projects/HTML/pom.xml
@@ -64,6 +64,10 @@
               <name>defaults.css</name>
               <path>../src/main/resources/defaults.css</path>
             </include-file>
+            <include-file>
+              <name>js/out/*</name>
+              <path>generated-sources/flexjs/*</path>
+            </include-file>
           </includeFiles>
         </configuration>
       </plugin>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/a57fc484/frameworks/projects/HTML5/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/HTML5/pom.xml b/frameworks/projects/HTML5/pom.xml
index d6bfecf..a0aaeec 100644
--- a/frameworks/projects/HTML5/pom.xml
+++ b/frameworks/projects/HTML5/pom.xml
@@ -55,6 +55,10 @@
               <name>defaults.css</name>
               <path>../src/main/resources/defaults.css</path>
             </include-file>
+            <include-file>
+              <name>js/out/*</name>
+              <path>generated-sources/flexjs/*</path>
+            </include-file>
           </includeFiles>
         </configuration>
       </plugin>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/a57fc484/frameworks/projects/JQuery/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/JQuery/pom.xml b/frameworks/projects/JQuery/pom.xml
index 414c049..3902d83 100644
--- a/frameworks/projects/JQuery/pom.xml
+++ b/frameworks/projects/JQuery/pom.xml
@@ -55,6 +55,10 @@
               <name>defaults.css</name>
               <path>../src/main/resources/defaults.css</path>
             </include-file>
+            <include-file>
+              <name>js/out/*</name>
+              <path>generated-sources/flexjs/*</path>
+            </include-file>
           </includeFiles>
         </configuration>
       </plugin>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/a57fc484/frameworks/projects/Language/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/Language/pom.xml b/frameworks/projects/Language/pom.xml
index 6b1ff3d..ac7119e 100644
--- a/frameworks/projects/Language/pom.xml
+++ b/frameworks/projects/Language/pom.xml
@@ -44,6 +44,12 @@
           <includeClasses>
             <includeClass>LanguageClasses</includeClass>
           </includeClasses>
+          <includeFiles>
+            <include-file>
+              <name>js/out/*</name>
+              <path>generated-sources/flexjs/*</path>
+            </include-file>
+          </includeFiles>
           <skipExtern>false</skipExtern>
         </configuration>
       </plugin>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/a57fc484/frameworks/projects/Mobile/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/Mobile/pom.xml b/frameworks/projects/Mobile/pom.xml
index d11f863..a20db8d 100644
--- a/frameworks/projects/Mobile/pom.xml
+++ b/frameworks/projects/Mobile/pom.xml
@@ -59,6 +59,10 @@
               <name>defaults.css</name>
               <path>../src/main/resources/defaults.css</path>
             </include-file>
+            <include-file>
+              <name>js/out/*</name>
+              <path>generated-sources/flexjs/*</path>
+            </include-file>
           </includeFiles>
         </configuration>
       </plugin>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/a57fc484/frameworks/projects/Network/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/Network/pom.xml b/frameworks/projects/Network/pom.xml
index b13cf88..884fdab 100644
--- a/frameworks/projects/Network/pom.xml
+++ b/frameworks/projects/Network/pom.xml
@@ -50,6 +50,12 @@
           <includeClasses>
             <includeClass>NetworkClasses</includeClass>
           </includeClasses>
+          <includeFiles>
+            <include-file>
+              <name>js/out/*</name>
+              <path>generated-sources/flexjs/*</path>
+            </include-file>
+          </includeFiles>
         </configuration>
       </plugin>
     </plugins>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/a57fc484/frameworks/projects/Reflection/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/Reflection/pom.xml b/frameworks/projects/Reflection/pom.xml
index ab9db5a..2a09ee5 100644
--- a/frameworks/projects/Reflection/pom.xml
+++ b/frameworks/projects/Reflection/pom.xml
@@ -42,6 +42,12 @@
         <extensions>true</extensions>
         <configuration>
           <includeSources>true</includeSources>
+          <includeFiles>
+            <include-file>
+              <name>js/out/*</name>
+              <path>generated-sources/flexjs/*</path>
+            </include-file>
+          </includeFiles>
         </configuration>
       </plugin>
     </plugins>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/a57fc484/frameworks/projects/Storage/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/Storage/pom.xml b/frameworks/projects/Storage/pom.xml
index 0d49303..b7d7ff9 100644
--- a/frameworks/projects/Storage/pom.xml
+++ b/frameworks/projects/Storage/pom.xml
@@ -55,6 +55,10 @@
               <name>defaults.css</name>
               <path>../src/main/resources/defaults.css</path>
             </include-file>
+            <include-file>
+              <name>js/out/*</name>
+              <path>generated-sources/flexjs/*</path>
+            </include-file>
           </includeFiles>
         </configuration>
       </plugin>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/a57fc484/frameworks/projects/XML/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/XML/pom.xml b/frameworks/projects/XML/pom.xml
index 90e30d1..a8392ac 100644
--- a/frameworks/projects/XML/pom.xml
+++ b/frameworks/projects/XML/pom.xml
@@ -48,6 +48,12 @@
             </namespace>
           </namespaces>
           <includeSources>true</includeSources>
+          <includeFiles>
+            <include-file>
+              <name>js/out/*</name>
+              <path>generated-sources/flexjs/*</path>
+            </include-file>
+          </includeFiles>
         </configuration>
       </plugin>
     </plugins>