[flex-blazeds] branch develop updated: distribution: force LF for .sh files and CRLF for .bat files

2023-08-03 Thread joshtynjala
This is an automated email from the ASF dual-hosted git repository.

joshtynjala pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/flex-blazeds.git


The following commit(s) were added to refs/heads/develop by this push:
 new c3a1cfd  distribution: force LF for .sh files and CRLF for .bat files
c3a1cfd is described below

commit c3a1cfd0da0a7cc65be36c6ab97c2908784cd726
Author: Josh Tynjala 
AuthorDate: Thu Aug 3 15:45:35 2023 -0700

distribution: force LF for .sh files and CRLF for .bat files
---
 distribution/src/assembly/assemble-bin.xml | 11 +++
 1 file changed, 11 insertions(+)

diff --git a/distribution/src/assembly/assemble-bin.xml 
b/distribution/src/assembly/assemble-bin.xml
index a43298f..5ca8f85 100644
--- a/distribution/src/assembly/assemble-bin.xml
+++ b/distribution/src/assembly/assemble-bin.xml
@@ -41,7 +41,9 @@
 **/.DS_Store
 **/*.jar
 **/*.war
+
 **/*.sh
+**/*.bat
 
 
 
@@ -49,10 +51,19 @@
 /
 
 0755
+unix
 
 **/*.sh
 
 
+
+../
+/
+windows
+
+**/*.bat
+
+
 
 
 



[flex-blazeds] branch develop updated: hello-world: cleanup

2023-08-03 Thread joshtynjala
This is an automated email from the ASF dual-hosted git repository.

joshtynjala pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/flex-blazeds.git


The following commit(s) were added to refs/heads/develop by this push:
 new 15095bd  hello-world: cleanup
15095bd is described below

commit 15095bde2ba03576d750308003bb77d1eb018991
Author: Josh Tynjala 
AuthorDate: Thu Aug 3 14:56:59 2023 -0700

hello-world: cleanup
---
 samples/hello-world/frontend/src/main/royale/Main.mxml | 7 ---
 1 file changed, 7 deletions(-)

diff --git a/samples/hello-world/frontend/src/main/royale/Main.mxml 
b/samples/hello-world/frontend/src/main/royale/Main.mxml
index f3c836b..0cca7e0 100644
--- a/samples/hello-world/frontend/src/main/royale/Main.mxml
+++ b/samples/hello-world/frontend/src/main/royale/Main.mxml
@@ -50,13 +50,6 @@
]]>

 
-   
-   .jewel.item.datagrid {
-   white-space: nowrap;
-   text-overflow: ellipsis;
-   }
-   
-






[flex-blazeds] branch develop updated: samples: hello-world

2023-08-03 Thread joshtynjala
This is an automated email from the ASF dual-hosted git repository.

joshtynjala pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/flex-blazeds.git


The following commit(s) were added to refs/heads/develop by this push:
 new ccb5fbf  samples: hello-world
ccb5fbf is described below

commit ccb5fbf53d883682b70a5a209b9a73e8e3a2a3ab
Author: Josh Tynjala 
AuthorDate: Thu Aug 3 14:54:57 2023 -0700

samples: hello-world
---
 distribution/pom.xml   |   8 +-
 distribution/src/assembly/assemble-bin.xml |   7 ++
 samples/hello-world/backend/pom.xml|  95 +
 .../blazeds/samples/hello/HelloWorldService.java   |  28 +
 .../main/webapp/WEB-INF/flex/remoting-config.xml}  |  38 ---
 .../main/webapp/WEB-INF/flex/services-config.xml   |  84 +++
 .../backend/src/main/webapp/WEB-INF/web.xml|  48 +
 samples/hello-world/frontend/asconfig.json |  19 
 samples/hello-world/frontend/pom.xml   | 117 +
 .../src/main/resources/index-template.html}|  37 +++
 .../hello-world/frontend/src/main/royale/Main.mxml |  86 +++
 samples/{ => hello-world}/pom.xml  |  13 +--
 samples/pom.xml|   1 +
 13 files changed, 531 insertions(+), 50 deletions(-)

diff --git a/distribution/pom.xml b/distribution/pom.xml
index aed138d..0b7a455 100644
--- a/distribution/pom.xml
+++ b/distribution/pom.xml
@@ -91,7 +91,13 @@

org.apache.flex.blazeds.samples.turnkey

blazeds-classic-turnkey-samples-backend
${project.version}
-   war
+   war
+   
+   
+   org.apache.flex.blazeds.samples.hello
+   blazeds-hello-world-backend
+   ${project.version}
+   war


 
\ No newline at end of file
diff --git a/distribution/src/assembly/assemble-bin.xml 
b/distribution/src/assembly/assemble-bin.xml
index 71911be..a43298f 100644
--- a/distribution/src/assembly/assemble-bin.xml
+++ b/distribution/src/assembly/assemble-bin.xml
@@ -76,5 +76,12 @@
 
org.apache.flex.blazeds.samples.turnkey:blazeds-classic-turnkey-samples-backend
 
 
+
+/webapps
+hello-world.war
+
+
org.apache.flex.blazeds.samples.hello:blazeds-hello-world-backend
+
+
 
 
\ No newline at end of file
diff --git a/samples/hello-world/backend/pom.xml 
b/samples/hello-world/backend/pom.xml
new file mode 100644
index 000..a9f18ef
--- /dev/null
+++ b/samples/hello-world/backend/pom.xml
@@ -0,0 +1,95 @@
+
+http://maven.apache.org/POM/4.0.0; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd;>
+  4.0.0
+
+  
+org.apache.flex.blazeds.samples.hello
+blazeds-hello-world-sample
+4.9.0-SNAPSHOT
+  
+
+  org.apache.flex.blazeds.samples.hello
+  blazeds-hello-world-backend
+  4.9.0-SNAPSHOT
+  war
+
+  Apache Flex BlazeDS: Hello World Sample: Backend
+
+  
+1.8
+  
+
+  
+src/main/java
+hello-world
+
+  
+org.apache.maven.plugins
+maven-compiler-plugin
+3.5.1
+
+  ${java.version}
+  ${java.version}
+
+  
+  
+org.apache.maven.plugins
+maven-war-plugin
+
+  
+
+  org.apache.flex.blazeds.samples.hello
+  blazeds-hello-world-frontend
+
+  
+
+  
+
+  
+
+  
+
+org.apache.flex.blazeds
+flex-messaging-common
+4.9.0-SNAPSHOT
+
+
+org.apache.flex.blazeds
+flex-messaging-core
+4.9.0-SNAPSHOT
+
+
+org.apache.flex.blazeds
+flex-messaging-proxy
+4.9.0-SNAPSHOT
+
+
+org.apache.flex.blazeds
+flex-messaging-remoting
+4.9.0-SNAPSHOT
+
+
+  org.apache.flex.blazeds.samples.hello
+  blazeds-hello-world-frontend
+  4.9.0-SNAPSHOT
+  war
+
+  
+
diff --git 
a/samples/hello-world/backend/src/main/java/org/apache/flex/blazeds/samples/hello/HelloWorldService.java
 
b/samples/hello-world/backend/src/main/java/org/apache/flex/blazeds/samples/hello/HelloWorldService.java
new file mode 100644
index 000..f3f25f9
--- /dev/null
+++ 
b/samples/hello-world/backend/src/main/java/org/apache/flex/blazeds/samples/hello/HelloWorldService.java
@@ -0,0 +1,28 @@
+/*
+ * 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