You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2017/08/21 19:50:06 UTC

[1/3] git commit: [flex-asjs] [refs/heads/feature/amf] - Network now depends on Reflection

Repository: flex-asjs
Updated Branches:
  refs/heads/feature/amf 030b917f6 -> 909caf1c0


Network now depends on Reflection


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

Branch: refs/heads/feature/amf
Commit: 682377ed3e3bfa67c153c8b0ee58ca95ca3dc683
Parents: 030b917
Author: Alex Harui <ah...@apache.org>
Authored: Mon Aug 21 12:32:52 2017 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Mon Aug 21 12:32:52 2017 -0700

----------------------------------------------------------------------
 frameworks/projects/Network/pom.xml | 3 ++-
 frameworks/projects/pom.xml         | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/682377ed/frameworks/projects/Network/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/Network/pom.xml b/frameworks/projects/Network/pom.xml
index b6f40b3..a1e0449 100644
--- a/frameworks/projects/Network/pom.xml
+++ b/frameworks/projects/Network/pom.xml
@@ -76,13 +76,14 @@
       <artifactId>Reflection</artifactId>
       <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
+      <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Reflection</artifactId>
       <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
-      <classifier>typedefs</classifier>
+      <classifier>js</classifier>
     </dependency>
     
   </dependencies>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/682377ed/frameworks/projects/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/pom.xml b/frameworks/projects/pom.xml
index 40c2e87..0479a4d 100644
--- a/frameworks/projects/pom.xml
+++ b/frameworks/projects/pom.xml
@@ -53,8 +53,8 @@
     <module>Language</module>
     <module>MaterialDesignLite</module>
     <module>Mobile</module>
-    <module>Network</module>
     <module>Reflection</module>
+    <module>Network</module>
     <module>Storage</module>
     <module>XML</module>
     <module>Text</module>


[2/3] git commit: [flex-asjs] [refs/heads/feature/amf] - wrap Grid in View so it compiles. Maybe it won't run

Posted by ah...@apache.org.
wrap Grid in View so it compiles.  Maybe it won't run


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

Branch: refs/heads/feature/amf
Commit: cf5ac71ae1035b28dfa3a6411138866a513e3a24
Parents: 682377e
Author: Alex Harui <ah...@apache.org>
Authored: Mon Aug 21 12:33:41 2017 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Mon Aug 21 12:33:41 2017 -0700

----------------------------------------------------------------------
 .../RemoteObjectAMFTest/src/main/flex/App.mxml  | 25 ++++++++++----------
 1 file changed, 13 insertions(+), 12 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/cf5ac71a/examples/flexjs/RemoteObjectAMFTest/src/main/flex/App.mxml
----------------------------------------------------------------------
diff --git a/examples/flexjs/RemoteObjectAMFTest/src/main/flex/App.mxml b/examples/flexjs/RemoteObjectAMFTest/src/main/flex/App.mxml
index eca7f52..4ef6867 100644
--- a/examples/flexjs/RemoteObjectAMFTest/src/main/flex/App.mxml
+++ b/examples/flexjs/RemoteObjectAMFTest/src/main/flex/App.mxml
@@ -52,18 +52,19 @@ limitations under the License.
     </js:beads>
 
     <js:initialView>
-        <mdl:Grid>
-        
-            <mdl:TextField id="name_txt">
-                <mdl:beads>
-                    <mdl:TextPrompt prompt="Text to be sent via AMF RemoteObject..."/>
-                    <mdl:Tooltip text="This sample requires an AMF Backend"/>
-                </mdl:beads>
-            </mdl:TextField>
-
-            <mdl:Button text="Send Name to AMF" raised="true"  accent="true"
-                        click="sendName()"/>
-        </mdl:Grid>
+        <js:View>
+            <mdl:Grid>
+                <mdl:TextField id="name_txt">
+                    <mdl:beads>
+                        <mdl:TextPrompt prompt="Text to be sent via AMF RemoteObject..."/>
+                        <mdl:Tooltip text="This sample requires an AMF Backend"/>
+                    </mdl:beads>
+                </mdl:TextField>
+                
+                <mdl:Button text="Send Name to AMF" raised="true"  accent="true"
+                            click="sendName()"/>
+            </mdl:Grid>
+        </js:View>
     </js:initialView>
 
     <js:valuesImpl>


[3/3] git commit: [flex-asjs] [refs/heads/feature/amf] - seemed to need this to build for me

Posted by ah...@apache.org.
seemed to need this to build for me


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

Branch: refs/heads/feature/amf
Commit: 909caf1c00156e422452f314bfcdf1ca5c34bbc7
Parents: cf5ac71
Author: Alex Harui <ah...@apache.org>
Authored: Mon Aug 21 12:34:15 2017 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Mon Aug 21 12:34:15 2017 -0700

----------------------------------------------------------------------
 examples/amf/SampleAmfWebApp/pom.xml | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/909caf1c/examples/amf/SampleAmfWebApp/pom.xml
----------------------------------------------------------------------
diff --git a/examples/amf/SampleAmfWebApp/pom.xml b/examples/amf/SampleAmfWebApp/pom.xml
index 091e087..1c9c268 100644
--- a/examples/amf/SampleAmfWebApp/pom.xml
+++ b/examples/amf/SampleAmfWebApp/pom.xml
@@ -24,8 +24,22 @@
   <version>0.9.0-SNAPSHOT</version>
   <packaging>war</packaging>
 
+  <properties>
+    <java.version>1.7</java.version>
+  </properties>
+  
   <build>
     <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <version>3.5.1</version>
+        <configuration>
+          <source>${java.version}</source>
+          <target>${java.version}</target>
+        </configuration>
+      </plugin>
+        
       <!-- Make Spring-Boot build an executable war -->
       <plugin>
         <groupId>org.springframework.boot</groupId>
@@ -77,7 +91,7 @@
     <dependency>
       <groupId>org.apache.flex.blazeds</groupId>
       <artifactId>blazeds-spring-boot-starter</artifactId>
-      <version>4.7.3-SNAPSHOT</version>
+      <version>4.7.3</version>
     </dependency>
 
     <dependency>