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 2019/05/22 14:40:26 UTC

[royale-asjs.wiki] branch master updated: Update broken maven instructions for first time build and add note for subsequent builds

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 07aa359  Update broken maven instructions for first time build and add note for subsequent builds
07aa359 is described below

commit 07aa359cb2d8a9d2560b3d584d529e281de2a401
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Wed May 22 16:40:25 2019 +0200

    Update broken maven instructions for first time build and add note for subsequent builds
---
 Build-Apache-Royale-with-Maven.md | 18 +++++++++++-------
 1 file changed, 11 insertions(+), 7 deletions(-)

diff --git a/Build-Apache-Royale-with-Maven.md b/Build-Apache-Royale-with-Maven.md
index 5e022bf..32dea1f 100644
--- a/Build-Apache-Royale-with-Maven.md
+++ b/Build-Apache-Royale-with-Maven.md
@@ -46,12 +46,7 @@ It also has a feature of **assembling a fully functional Royale distribution** i
     git checkout develop
     ```
 
-    3. Build the compiler utilities (if needed):
-    ```
-    mvn -s settings-template.xml clean install -P utils
-    ```
-
-    4. Build the compiler:
+    3. Build the compiler:
     ```
     mvn -s settings-template.xml clean install
     ```
@@ -99,11 +94,20 @@ It also has a feature of **assembling a fully functional Royale distribution** i
 
     3. Build the framework libs:
     ```
-    mvn -s settings-template.xml clean install
+    mvn -s settings-template.xml clean install -Pgenerate-swcs-for-swf
     ```
 
    Now you have compiler, typedefs and framework ready. If you want to make some modification you can make the change and build only the part that was modified and you'll be ready to use it in your own project.
 
+### Following builds
+
+   Notice that after the first build, you can run a more simple instruction for compiler, typedefs and framwork. You just need to position on each repo and execute:
+
+    ```
+    mvn clean install
+    ```
+Optionaly you can run without test for convenience (-DskipTests)
+
    ### Build distribution (Royale SDK) with Maven
    Optionally you can also build the distribution binaries:
    ```