You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ca...@apache.org on 2020/03/22 11:36:47 UTC

[royale-asjs] branch develop updated: - Fixed the parent pom artifact ids of the ModuleExamples child modules

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

carlosrovira 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 b023cbb  - Fixed the parent pom artifact ids of the ModuleExamples child modules
     new d919872  Merge pull request #775 from chrisdutz/develop
b023cbb is described below

commit b023cbbbe03233e1a9e084b879dcdf7316c9224d
Author: Christofer Dutz <ch...@c-ware.de>
AuthorDate: Sun Mar 22 12:29:22 2020 +0100

    - Fixed the parent pom artifact ids of the ModuleExamples child modules
---
 examples/royale/ModuleExample/MainApp/pom.xml | 13 +------------
 examples/royale/ModuleExample/Module/pom.xml  | 14 +-------------
 2 files changed, 2 insertions(+), 25 deletions(-)

diff --git a/examples/royale/ModuleExample/MainApp/pom.xml b/examples/royale/ModuleExample/MainApp/pom.xml
index a8c9c73..0d8b853 100644
--- a/examples/royale/ModuleExample/MainApp/pom.xml
+++ b/examples/royale/ModuleExample/MainApp/pom.xml
@@ -22,7 +22,7 @@
 
   <parent>
     <groupId>org.apache.royale.examples</groupId>
-    <artifactId>examples-royale-ModuleExample</artifactId>
+    <artifactId>ModuleExample</artifactId>
     <version>0.9.7-SNAPSHOT</version>
   </parent>
 
@@ -49,15 +49,4 @@
     </plugins>
   </build>
 
-  <dependencies>
-    <dependency>
-      <groupId>org.apache.royale.framework</groupId>
-      <artifactId>BasicTheme</artifactId>
-      <version>0.9.7-SNAPSHOT</version>
-      <type>swc</type>
-      <scope>theme</scope>
-      <classifier>js</classifier>
-    </dependency>
-  </dependencies>
-
 </project>
diff --git a/examples/royale/ModuleExample/Module/pom.xml b/examples/royale/ModuleExample/Module/pom.xml
index 725e197..819a314 100644
--- a/examples/royale/ModuleExample/Module/pom.xml
+++ b/examples/royale/ModuleExample/Module/pom.xml
@@ -22,7 +22,7 @@
 
   <parent>
     <groupId>org.apache.royale.examples</groupId>
-    <artifactId>examples-royale-ModuleExample</artifactId>
+    <artifactId>ModuleExample</artifactId>
     <version>0.9.7-SNAPSHOT</version>
   </parent>
 
@@ -115,19 +115,7 @@
           </execution>
         </executions>
       </plugin>
-
     </plugins>
   </build>
 
-  <dependencies>
-    <dependency>
-      <groupId>org.apache.royale.framework</groupId>
-      <artifactId>BasicTheme</artifactId>
-      <version>0.9.7-SNAPSHOT</version>
-      <type>swc</type>
-      <scope>theme</scope>
-      <classifier>js</classifier>
-    </dependency>
-  </dependencies>
-
 </project>