You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by gr...@apache.org on 2020/10/13 08:47:55 UTC

[royale-asjs] branch develop updated: Not sure why this causes a change in dependencies for maven build. The change to UITestVO also needs to be made for maven swf build only. It should... to investigate.

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

gregdove pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/develop by this push:
     new 69e1d48  Not sure why this causes a change in dependencies for maven build. The change to UITestVO also needs to be made for maven swf build only. It should... to investigate.
69e1d48 is described below

commit 69e1d48af25a9d42f06bb92b757db3631abe1496
Author: greg-dove <gr...@gmail.com>
AuthorDate: Tue Oct 13 21:44:28 2020 +1300

    Not sure why this causes a change in dependencies for maven build.
    The change to UITestVO also needs to be made for maven swf build only. It should... to investigate.
---
 frameworks/projects/RoyaleUnitUI/pom.xml           | 62 ++++++++++++++++------
 .../org/apache/royale/html/test/models/UITestVO.as |  3 +-
 2 files changed, 47 insertions(+), 18 deletions(-)

diff --git a/frameworks/projects/RoyaleUnitUI/pom.xml b/frameworks/projects/RoyaleUnitUI/pom.xml
index bda546f..1653501 100644
--- a/frameworks/projects/RoyaleUnitUI/pom.xml
+++ b/frameworks/projects/RoyaleUnitUI/pom.xml
@@ -1,21 +1,21 @@
 <?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.
-
+<!--
+
+  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.
+
 --><project xmlns="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">
   <modelVersion>4.0.0</modelVersion>
 
@@ -52,6 +52,20 @@
   <dependencies>
     <dependency>
       <groupId>org.apache.royale.framework</groupId>
+      <artifactId>Collections</artifactId>
+      <version>0.9.8-SNAPSHOT</version>
+      <type>swc</type>
+      <classifier>js</classifier>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.royale.framework</groupId>
+      <artifactId>Binding</artifactId>
+      <version>0.9.8-SNAPSHOT</version>
+      <type>swc</type>
+      <classifier>js</classifier>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.royale.framework</groupId>
       <artifactId>Core</artifactId>
       <version>0.9.8-SNAPSHOT</version>
       <type>swc</type>
@@ -86,6 +100,20 @@
       <dependencies>
         <dependency>
           <groupId>org.apache.royale.framework</groupId>
+          <artifactId>Collections</artifactId>
+          <version>0.9.8-SNAPSHOT</version>
+          <type>swc</type>
+          <classifier>swf</classifier>
+        </dependency>
+        <dependency>
+          <groupId>org.apache.royale.framework</groupId>
+          <artifactId>Binding</artifactId>
+          <version>0.9.8-SNAPSHOT</version>
+          <type>swc</type>
+          <classifier>swf</classifier>
+        </dependency>
+        <dependency>
+          <groupId>org.apache.royale.framework</groupId>
           <artifactId>Core</artifactId>
           <version>0.9.8-SNAPSHOT</version>
           <type>swc</type>
diff --git a/frameworks/projects/RoyaleUnitUI/src/main/royale/org/apache/royale/html/test/models/UITestVO.as b/frameworks/projects/RoyaleUnitUI/src/main/royale/org/apache/royale/html/test/models/UITestVO.as
index 93453aa..a06aad7 100644
--- a/frameworks/projects/RoyaleUnitUI/src/main/royale/org/apache/royale/html/test/models/UITestVO.as
+++ b/frameworks/projects/RoyaleUnitUI/src/main/royale/org/apache/royale/html/test/models/UITestVO.as
@@ -20,6 +20,7 @@ package org.apache.royale.html.test.models
 {
 	import org.apache.royale.test.runners.notification.Failure;
 	import org.apache.royale.events.Event;
+	import org.apache.royale.events.EventDispatcher;
 
 	[ExcludeClass]
 	[Bindable]
@@ -27,7 +28,7 @@ package org.apache.royale.html.test.models
 	/**
 	 * @private
 	 */
-	public class UITestVO
+	public class UITestVO extends EventDispatcher
 	{
 		public function UITestVO(description:String)
 		{