You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by jo...@apache.org on 2021/05/05 21:17:41 UTC

[royale-asjs] branch develop updated (f752231 -> 9ae4d15)

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

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


    from f752231  Maven: compiler and typedefs version are the same as the framework by default
     new a41c6d1  Maven: fix dependency versions in archetypes that were a mix between a specific version and royale.framework.version property references to be consistent
     new 9ae4d15  Maven: another spot where a specific version should be project.version by default instead

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../src/main/resources/archetype-resources/pom.xml                | 8 ++++----
 .../src/main/resources/archetype-resources/pom.xml                | 8 ++++----
 .../src/main/resources/archetype-resources/pom.xml                | 8 ++++----
 .../src/main/resources/archetype-resources/pom.xml                | 4 ++--
 manualtests/pom.xml                                               | 2 +-
 5 files changed, 15 insertions(+), 15 deletions(-)

[royale-asjs] 01/02: Maven: fix dependency versions in archetypes that were a mix between a specific version and royale.framework.version property references to be consistent

Posted by jo...@apache.org.
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/royale-asjs.git

commit a41c6d15401e56642895198af532167536131788
Author: Josh Tynjala <jo...@bowlerhat.dev>
AuthorDate: Wed May 5 14:16:38 2021 -0700

    Maven: fix dependency versions in archetypes that were a mix between a specific version and royale.framework.version property references to be consistent
---
 .../src/main/resources/archetype-resources/pom.xml                | 8 ++++----
 .../src/main/resources/archetype-resources/pom.xml                | 8 ++++----
 .../src/main/resources/archetype-resources/pom.xml                | 8 ++++----
 .../src/main/resources/archetype-resources/pom.xml                | 4 ++--
 4 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/archetypes/royale-jewel-application-archetype/src/main/resources/archetype-resources/pom.xml b/archetypes/royale-jewel-application-archetype/src/main/resources/archetype-resources/pom.xml
index b0b8e4c..b774245 100644
--- a/archetypes/royale-jewel-application-archetype/src/main/resources/archetype-resources/pom.xml
+++ b/archetypes/royale-jewel-application-archetype/src/main/resources/archetype-resources/pom.xml
@@ -113,7 +113,7 @@
     <dependency>
       <groupId>org.apache.royale.framework</groupId>
       <artifactId>Basic</artifactId>
-      <version>0.9.8-SNAPSHOT</version>
+      <version>${royale.framework.version}</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
@@ -121,7 +121,7 @@
     <dependency>
       <groupId>org.apache.royale.framework</groupId>
       <artifactId>Jewel</artifactId>
-      <version>0.9.8-SNAPSHOT</version>
+      <version>${royale.framework.version}</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
@@ -138,7 +138,7 @@
     <dependency>
       <groupId>org.apache.royale.framework</groupId>
       <artifactId>Icons</artifactId>
-      <version>0.9.8-SNAPSHOT</version>
+      <version>${royale.framework.version}</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
@@ -147,7 +147,7 @@
     <dependency>
       <groupId>org.apache.royale.framework</groupId>
       <artifactId>Crux</artifactId>
-      <version>0.9.8-SNAPSHOT</version>
+      <version>${royale.framework.version}</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
diff --git a/archetypes/royale-jewel-library-archetype/src/main/resources/archetype-resources/pom.xml b/archetypes/royale-jewel-library-archetype/src/main/resources/archetype-resources/pom.xml
index 031f19c..4ab9c2e8 100644
--- a/archetypes/royale-jewel-library-archetype/src/main/resources/archetype-resources/pom.xml
+++ b/archetypes/royale-jewel-library-archetype/src/main/resources/archetype-resources/pom.xml
@@ -233,7 +233,7 @@
     <dependency>
       <groupId>org.apache.royale.framework</groupId>
       <artifactId>Basic</artifactId>
-      <version>0.9.8-SNAPSHOT</version>
+      <version>${royale.framework.version}</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
@@ -241,7 +241,7 @@
     <dependency>
       <groupId>org.apache.royale.framework</groupId>
       <artifactId>Jewel</artifactId>
-      <version>0.9.8-SNAPSHOT</version>
+      <version>${royale.framework.version}</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
@@ -249,7 +249,7 @@
     <dependency>
       <groupId>org.apache.royale.framework</groupId>
       <artifactId>Icons</artifactId>
-      <version>0.9.8-SNAPSHOT</version>
+      <version>${royale.framework.version}</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
@@ -258,7 +258,7 @@
     <dependency>
       <groupId>org.apache.royale.framework</groupId>
       <artifactId>Crux</artifactId>
-      <version>0.9.8-SNAPSHOT</version>
+      <version>${royale.framework.version}</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
diff --git a/archetypes/royale-jewel-module-application-archetype/src/main/resources/archetype-resources/pom.xml b/archetypes/royale-jewel-module-application-archetype/src/main/resources/archetype-resources/pom.xml
index ca00ed9..9de38c5 100644
--- a/archetypes/royale-jewel-module-application-archetype/src/main/resources/archetype-resources/pom.xml
+++ b/archetypes/royale-jewel-module-application-archetype/src/main/resources/archetype-resources/pom.xml
@@ -113,7 +113,7 @@
     <dependency>
       <groupId>org.apache.royale.framework</groupId>
       <artifactId>Basic</artifactId>
-      <version>0.9.8-SNAPSHOT</version>
+      <version>${royale.framework.version}</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
@@ -121,7 +121,7 @@
     <dependency>
       <groupId>org.apache.royale.framework</groupId>
       <artifactId>Jewel</artifactId>
-      <version>0.9.8-SNAPSHOT</version>
+      <version>${royale.framework.version}</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
@@ -138,7 +138,7 @@
     <dependency>
       <groupId>org.apache.royale.framework</groupId>
       <artifactId>Icons</artifactId>
-      <version>0.9.8-SNAPSHOT</version>
+      <version>${royale.framework.version}</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
@@ -147,7 +147,7 @@
     <dependency>
       <groupId>org.apache.royale.framework</groupId>
       <artifactId>Crux</artifactId>
-      <version>0.9.8-SNAPSHOT</version>
+      <version>${royale.framework.version}</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
diff --git a/archetypes/royale-simple-application-archetype/src/main/resources/archetype-resources/pom.xml b/archetypes/royale-simple-application-archetype/src/main/resources/archetype-resources/pom.xml
index 2888d65..3300b1d 100644
--- a/archetypes/royale-simple-application-archetype/src/main/resources/archetype-resources/pom.xml
+++ b/archetypes/royale-simple-application-archetype/src/main/resources/archetype-resources/pom.xml
@@ -75,7 +75,7 @@
     <dependency>
       <groupId>org.apache.royale.framework</groupId>
       <artifactId>Basic</artifactId>
-      <version>0.9.8-SNAPSHOT</version>
+      <version>${royale.framework.version}</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
@@ -129,7 +129,7 @@
         <dependency>
           <groupId>org.apache.royale.framework</groupId>
           <artifactId>Basic</artifactId>
-          <version>0.9.8-SNAPSHOT</version>
+          <version>${royale.framework.version}</version>
           <type>swc</type>
           <classifier>swf</classifier>
         </dependency>

[royale-asjs] 02/02: Maven: another spot where a specific version should be project.version by default instead

Posted by jo...@apache.org.
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/royale-asjs.git

commit 9ae4d1561be0267429f58226879b7046096fb948
Author: Josh Tynjala <jo...@bowlerhat.dev>
AuthorDate: Wed May 5 14:17:22 2021 -0700

    Maven: another spot where a specific version should be project.version by default instead
---
 manualtests/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/manualtests/pom.xml b/manualtests/pom.xml
index a08ef6a..99a60bd 100644
--- a/manualtests/pom.xml
+++ b/manualtests/pom.xml
@@ -32,7 +32,7 @@
   
   <properties>
     <compiler.output-dir>${basedir}/target/javascript/bin/js-debug</compiler.output-dir>
-    <royale.framework.version>0.9.8-SNAPSHOT</royale.framework.version>
+    <royale.framework.version>${project.version}</royale.framework.version>
   </properties>
   <name>Apache Royale: ManualTests</name>