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 2018/09/14 22:00:33 UTC

[royale-compiler] branch develop updated (def5465 -> 5d2a775)

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

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


    from def5465  fix sourcemap for MXML files inside packages
     new 0d8d46c  remove unused imports
     new 71b048e  close buffers and remove unused vars
     new 27c38bd  exclude factoyPath from RAT plugin
     new b6a402c  Merge branch 'develop' into compiler-java-vscode-work
     new 5d2a775  Merge branch 'compiler-java-vscode-work' into develop

The 5 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:
 .../compiler/tools/annotate/AnnotateClass.java     |  7 +-
 .../tools/annotate/AnnotateClassesMojo.java        |  1 -
 .../ProblemResourceBundleGeneratorMojo.java        |  1 +
 .../royale/compiler/config/Configurator.java       |  1 -
 .../embedding/transcoders/ITranscoder.java         |  2 -
 .../compiler/internal/config/TargetSettings.java   |  1 -
 .../problems/IOperandStackUnderflowProblem.java    |  3 -
 .../royale/compiler/problems/IParserProblem.java   |  3 -
 .../java/org/apache/royale/utils/FileUtils.java    |  3 +-
 .../internal/codegen/typedefs/DummyNode.java       |  2 -
 .../org/apache/royale/utils/MavenTestAdapter.java  |  1 -
 pom.xml                                            |  2 +
 .../org/apache/royale/maven/BaseCompileMojo.java   |  4 -
 .../apache/royale/maven/GenerateExterncMojo.java   |  2 -
 .../apache/royale/maven/GenerateManifestsMojo.java |  3 +-
 swfutils/src/main/java/flash/swf/TagDecoder.java   | 93 +++++++++++-----------
 .../src/main/java/flash/swf/tags/DefineFont3.java  |  2 +-
 17 files changed, 59 insertions(+), 72 deletions(-)


[royale-compiler] 04/05: Merge branch 'develop' into compiler-java-vscode-work

Posted by ca...@apache.org.
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-compiler.git

commit b6a402c9460e77393bce807f721d095875153ddb
Merge: 27c38bd 915d62e
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Fri Sep 14 20:57:36 2018 +0200

    Merge branch 'develop' into compiler-java-vscode-work
    
    * develop:
      need to add known dependencies for the main class.  Fixes #47

 .../java/org/apache/royale/compiler/internal/graph/GoogDepsWriter.java   | 1 +
 1 file changed, 1 insertion(+)


[royale-compiler] 02/05: close buffers and remove unused vars

Posted by ca...@apache.org.
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-compiler.git

commit 71b048e63c07dbba2386836e31db7814ded6cea8
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Fri Sep 14 17:26:04 2018 +0200

    close buffers and remove unused vars
---
 .../compiler/tools/annotate/AnnotateClass.java     |  4 +
 .../ProblemResourceBundleGeneratorMojo.java        |  1 +
 .../java/org/apache/royale/utils/FileUtils.java    |  3 +-
 .../apache/royale/maven/GenerateManifestsMojo.java |  3 +-
 swfutils/src/main/java/flash/swf/TagDecoder.java   | 93 +++++++++++-----------
 .../src/main/java/flash/swf/tags/DefineFont3.java  |  2 +-
 6 files changed, 57 insertions(+), 49 deletions(-)

diff --git a/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/annotate/AnnotateClass.java b/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/annotate/AnnotateClass.java
index a7eac1f..9d0e9e5 100644
--- a/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/annotate/AnnotateClass.java
+++ b/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/annotate/AnnotateClass.java
@@ -20,6 +20,8 @@ public class AnnotateClass
 {
     public static class AnnotateClassDeleteException extends Exception
     {
+        private static final long serialVersionUID = 1L;
+
         public AnnotateClassDeleteException(String s)
         {
             super(s);
@@ -28,6 +30,8 @@ public class AnnotateClass
     
     public static class AnnotateClassRenameException extends Exception
     {
+        private static final long serialVersionUID = 1L;
+
         public AnnotateClassRenameException(String s)
         {
             super(s);
diff --git a/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/problems/ProblemResourceBundleGeneratorMojo.java b/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/problems/ProblemResourceBundleGeneratorMojo.java
index 0a9b5a9..b8a3193 100644
--- a/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/problems/ProblemResourceBundleGeneratorMojo.java
+++ b/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/problems/ProblemResourceBundleGeneratorMojo.java
@@ -85,6 +85,7 @@ public class ProblemResourceBundleGeneratorMojo
                     }
                 }
             }
+            sourceFileReader.close();
             if(sb != null) {
                 line = sb.toString();
                 return line.substring(line.indexOf("\"") + 1, line.lastIndexOf("\""));
diff --git a/compiler-common/src/main/java/org/apache/royale/utils/FileUtils.java b/compiler-common/src/main/java/org/apache/royale/utils/FileUtils.java
index 824ab6d..2a40b60 100644
--- a/compiler-common/src/main/java/org/apache/royale/utils/FileUtils.java
+++ b/compiler-common/src/main/java/org/apache/royale/utils/FileUtils.java
@@ -167,7 +167,8 @@ public final class FileUtils
             }
         	if ((CompilerDiagnosticsConstants.diagnostics & CompilerDiagnosticsConstants.DA_BYTEARRAY) == CompilerDiagnosticsConstants.DA_BYTEARRAY)
         		System.out.println("FileUtils waiting for lock in toByteArray");
-            byte[] b = baos.getDirectByteArray();
+            //byte[] b = 
+            baos.getDirectByteArray();
         	if ((CompilerDiagnosticsConstants.diagnostics & CompilerDiagnosticsConstants.DA_BYTEARRAY) == CompilerDiagnosticsConstants.DA_BYTEARRAY)
         		System.out.println("FileUtils waiting for lock in toByteArray");
         }
diff --git a/royale-maven-plugin/src/main/java/org/apache/royale/maven/GenerateManifestsMojo.java b/royale-maven-plugin/src/main/java/org/apache/royale/maven/GenerateManifestsMojo.java
index 01d626f..80f63ed 100644
--- a/royale-maven-plugin/src/main/java/org/apache/royale/maven/GenerateManifestsMojo.java
+++ b/royale-maven-plugin/src/main/java/org/apache/royale/maven/GenerateManifestsMojo.java
@@ -123,7 +123,8 @@ public class GenerateManifestsMojo
                     break;
                 }
             }
-
+            zin.close();
+            
             // Read the catalog.xml file inside.
             if(catalogBytes != null) {
                 try {
diff --git a/swfutils/src/main/java/flash/swf/TagDecoder.java b/swfutils/src/main/java/flash/swf/TagDecoder.java
index 45b7326..25c8ddb 100644
--- a/swfutils/src/main/java/flash/swf/TagDecoder.java
+++ b/swfutils/src/main/java/flash/swf/TagDecoder.java
@@ -1325,6 +1325,7 @@ public final class TagDecoder
         System.arraycopy(alphaData, 0, t.alphaData, 0, i);
 
         dict.add(id, t);
+        r1.close();
         return t;
     }
 
@@ -1627,52 +1628,52 @@ public final class TagDecoder
         return t;
     }
 
-    private Tag decodePlaceObject2(int length) throws IOException
-    {
-        PlaceObject t;
-        t = new PlaceObject(stagPlaceObject2);
-        r.syncBits();
-
-        int pos = r.getOffset();
-
-        t.flags = r.readUI8();
-        t.depth = r.readUI16();
-
-        if (t.hasCharID())
-        {
-            int idref = r.readUI16();
-            t.ref = dict.getTag(idref);
-        }
-        if (t.hasMatrix())
-        {
-            t.matrix = decodeMatrix();
-        }
-        if (t.hasCxform())
-        {
-            // ed 5/22/03 the SWF 6 file format spec says this will be a CXFORM, but
-            // the spec is wrong.  the player expects a CXFORMA.
-            t.colorTransform = decodeCxforma();
-        }
-        if (t.hasRatio())
-        {
-            t.ratio = r.readUI16();
-        }
-        if (t.hasName())
-        {
-            t.name = r.readString();
-        }
-        if (t.hasClipDepth())
-        {
-            t.clipDepth = r.readUI16();
-        }
-        if (t.hasClipAction())
-        {
-            ActionDecoder actionDecoder = new ActionDecoder(r,swd);
-            actionDecoder.setKeepOffsets(keepOffsets);
-            t.clipActions = actionDecoder.decodeClipActions(length - (r.getOffset() - pos));
-        }
-        return t;
-    }
+    // private Tag decodePlaceObject2(int length) throws IOException
+    // {
+    //     PlaceObject t;
+    //     t = new PlaceObject(stagPlaceObject2);
+    //     r.syncBits();
+
+    //     int pos = r.getOffset();
+
+    //     t.flags = r.readUI8();
+    //     t.depth = r.readUI16();
+
+    //     if (t.hasCharID())
+    //     {
+    //         int idref = r.readUI16();
+    //         t.ref = dict.getTag(idref);
+    //     }
+    //     if (t.hasMatrix())
+    //     {
+    //         t.matrix = decodeMatrix();
+    //     }
+    //     if (t.hasCxform())
+    //     {
+    //         // ed 5/22/03 the SWF 6 file format spec says this will be a CXFORM, but
+    //         // the spec is wrong.  the player expects a CXFORMA.
+    //         t.colorTransform = decodeCxforma();
+    //     }
+    //     if (t.hasRatio())
+    //     {
+    //         t.ratio = r.readUI16();
+    //     }
+    //     if (t.hasName())
+    //     {
+    //         t.name = r.readString();
+    //     }
+    //     if (t.hasClipDepth())
+    //     {
+    //         t.clipDepth = r.readUI16();
+    //     }
+    //     if (t.hasClipAction())
+    //     {
+    //         ActionDecoder actionDecoder = new ActionDecoder(r,swd);
+    //         actionDecoder.setKeepOffsets(keepOffsets);
+    //         t.clipActions = actionDecoder.decodeClipActions(length - (r.getOffset() - pos));
+    //     }
+    //     return t;
+    // }
 
 
     private CXFormWithAlpha decodeCxforma() throws IOException
diff --git a/swfutils/src/main/java/flash/swf/tags/DefineFont3.java b/swfutils/src/main/java/flash/swf/tags/DefineFont3.java
index c1ce80a..588eb31 100644
--- a/swfutils/src/main/java/flash/swf/tags/DefineFont3.java
+++ b/swfutils/src/main/java/flash/swf/tags/DefineFont3.java
@@ -82,7 +82,7 @@ public class DefineFont3 extends DefineFont2
 
         if (object instanceof DefineFont3 && super.equals(object))
         {
-            DefineFont3 defineFont = (DefineFont3)object;
+            // DefineFont3 defineFont = (DefineFont3)object;
 
             // DefineFontAlignZones already checks if its font is equal, so we
             // don't check here to avoid circular equality checking...


[royale-compiler] 05/05: Merge branch 'compiler-java-vscode-work' into develop

Posted by ca...@apache.org.
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-compiler.git

commit 5d2a775f321346dd34f67e1d945a3fe7795351e2
Merge: def5465 b6a402c
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Fri Sep 14 23:50:22 2018 +0200

    Merge branch 'compiler-java-vscode-work' into develop
    
    * compiler-java-vscode-work:
      exclude factoyPath from RAT plugin
      close buffers and remove unused vars
      remove unused imports

 .../compiler/tools/annotate/AnnotateClass.java     |  7 +-
 .../tools/annotate/AnnotateClassesMojo.java        |  1 -
 .../ProblemResourceBundleGeneratorMojo.java        |  1 +
 .../royale/compiler/config/Configurator.java       |  1 -
 .../embedding/transcoders/ITranscoder.java         |  2 -
 .../compiler/internal/config/TargetSettings.java   |  1 -
 .../problems/IOperandStackUnderflowProblem.java    |  3 -
 .../royale/compiler/problems/IParserProblem.java   |  3 -
 .../java/org/apache/royale/utils/FileUtils.java    |  3 +-
 .../internal/codegen/typedefs/DummyNode.java       |  2 -
 .../org/apache/royale/utils/MavenTestAdapter.java  |  1 -
 pom.xml                                            |  2 +
 .../org/apache/royale/maven/BaseCompileMojo.java   |  4 -
 .../apache/royale/maven/GenerateExterncMojo.java   |  2 -
 .../apache/royale/maven/GenerateManifestsMojo.java |  3 +-
 swfutils/src/main/java/flash/swf/TagDecoder.java   | 93 +++++++++++-----------
 .../src/main/java/flash/swf/tags/DefineFont3.java  |  2 +-
 17 files changed, 59 insertions(+), 72 deletions(-)


[royale-compiler] 01/05: remove unused imports

Posted by ca...@apache.org.
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-compiler.git

commit 0d8d46cc095023aeb7168f3c5596643e96daf802
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Fri Sep 14 17:24:44 2018 +0200

    remove unused imports
---
 .../java/org/apache/royale/compiler/tools/annotate/AnnotateClass.java | 3 ---
 .../apache/royale/compiler/tools/annotate/AnnotateClassesMojo.java    | 1 -
 .../src/main/java/org/apache/royale/compiler/config/Configurator.java | 1 -
 .../org/apache/royale/compiler/embedding/transcoders/ITranscoder.java | 2 --
 .../org/apache/royale/compiler/internal/config/TargetSettings.java    | 1 -
 .../royale/compiler/problems/IOperandStackUnderflowProblem.java       | 3 ---
 .../main/java/org/apache/royale/compiler/problems/IParserProblem.java | 3 ---
 .../apache/royale/compiler/internal/codegen/typedefs/DummyNode.java   | 2 --
 .../src/main/java/org/apache/royale/utils/MavenTestAdapter.java       | 1 -
 .../src/main/java/org/apache/royale/maven/BaseCompileMojo.java        | 4 ----
 .../src/main/java/org/apache/royale/maven/GenerateExterncMojo.java    | 2 --
 11 files changed, 23 deletions(-)

diff --git a/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/annotate/AnnotateClass.java b/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/annotate/AnnotateClass.java
index d3cb8f5..a7eac1f 100644
--- a/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/annotate/AnnotateClass.java
+++ b/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/annotate/AnnotateClass.java
@@ -15,9 +15,6 @@
 package org.apache.royale.compiler.tools.annotate;
 
 import java.io.*;
-import java.util.Collections;
-import java.util.HashSet;
-import java.util.Set;
 
 public class AnnotateClass
 {
diff --git a/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/annotate/AnnotateClassesMojo.java b/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/annotate/AnnotateClassesMojo.java
index 47872fb..3999688 100644
--- a/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/annotate/AnnotateClassesMojo.java
+++ b/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/annotate/AnnotateClassesMojo.java
@@ -19,7 +19,6 @@ import org.apache.maven.plugin.MojoExecutionException;
 import org.apache.maven.plugins.annotations.LifecyclePhase;
 import org.apache.maven.plugins.annotations.Mojo;
 import org.apache.maven.plugins.annotations.Parameter;
-import org.apache.maven.project.MavenProject;
 import org.codehaus.plexus.compiler.util.scan.InclusionScanException;
 import org.codehaus.plexus.compiler.util.scan.SimpleSourceInclusionScanner;
 import org.codehaus.plexus.compiler.util.scan.mapping.SuffixMapping;
diff --git a/compiler-common/src/main/java/org/apache/royale/compiler/config/Configurator.java b/compiler-common/src/main/java/org/apache/royale/compiler/config/Configurator.java
index 14aa674..065f7b1 100644
--- a/compiler-common/src/main/java/org/apache/royale/compiler/config/Configurator.java
+++ b/compiler-common/src/main/java/org/apache/royale/compiler/config/Configurator.java
@@ -45,7 +45,6 @@ import org.apache.royale.compiler.projects.ICompilerProject;
 import org.apache.royale.compiler.targets.ITargetSettings;
 import org.apache.royale.compiler.targets.ITarget.TargetType;
 import org.apache.royale.compiler.workspaces.IWorkspace;
-import org.apache.royale.swc.ISWC;
 import org.apache.royale.utils.FileUtils;
 import org.apache.royale.utils.FilenameNormalization;
 import org.apache.royale.utils.Trace;
diff --git a/compiler-common/src/main/java/org/apache/royale/compiler/embedding/transcoders/ITranscoder.java b/compiler-common/src/main/java/org/apache/royale/compiler/embedding/transcoders/ITranscoder.java
index 5f155e5..831c42a 100644
--- a/compiler-common/src/main/java/org/apache/royale/compiler/embedding/transcoders/ITranscoder.java
+++ b/compiler-common/src/main/java/org/apache/royale/compiler/embedding/transcoders/ITranscoder.java
@@ -22,8 +22,6 @@ package org.apache.royale.compiler.embedding.transcoders;
 import java.util.Collection;
 import java.util.Map;
 
-import org.apache.commons.io.IOUtils;
-
 import org.apache.royale.compiler.common.ISourceLocation;
 import org.apache.royale.compiler.tree.as.IFileNode;
 import org.apache.royale.compiler.problems.ICompilerProblem;
diff --git a/compiler-common/src/main/java/org/apache/royale/compiler/internal/config/TargetSettings.java b/compiler-common/src/main/java/org/apache/royale/compiler/internal/config/TargetSettings.java
index 8798480..bc2ab9f 100644
--- a/compiler-common/src/main/java/org/apache/royale/compiler/internal/config/TargetSettings.java
+++ b/compiler-common/src/main/java/org/apache/royale/compiler/internal/config/TargetSettings.java
@@ -20,7 +20,6 @@
 package org.apache.royale.compiler.internal.config;
 
 import java.io.File;
-import java.util.ArrayList;
 import java.util.Collection;
 import java.util.HashSet;
 import java.util.List;
diff --git a/compiler-common/src/main/java/org/apache/royale/compiler/problems/IOperandStackUnderflowProblem.java b/compiler-common/src/main/java/org/apache/royale/compiler/problems/IOperandStackUnderflowProblem.java
index db12a61..74b8f1a 100644
--- a/compiler-common/src/main/java/org/apache/royale/compiler/problems/IOperandStackUnderflowProblem.java
+++ b/compiler-common/src/main/java/org/apache/royale/compiler/problems/IOperandStackUnderflowProblem.java
@@ -19,9 +19,6 @@
 
 package org.apache.royale.compiler.problems;
 
-import org.apache.royale.compiler.common.ISourceLocation;
-
-
 /**
  * Marker interface to break dependencies in ProblemQuery
  */
diff --git a/compiler-common/src/main/java/org/apache/royale/compiler/problems/IParserProblem.java b/compiler-common/src/main/java/org/apache/royale/compiler/problems/IParserProblem.java
index f1d91f8..1d78a68 100644
--- a/compiler-common/src/main/java/org/apache/royale/compiler/problems/IParserProblem.java
+++ b/compiler-common/src/main/java/org/apache/royale/compiler/problems/IParserProblem.java
@@ -19,9 +19,6 @@
 
 package org.apache.royale.compiler.problems;
 
-import org.apache.royale.compiler.common.ISourceLocation;
-
-
 /**
  * Marker interface to break dependencies in ProblemQuery
  */
diff --git a/compiler-externc/src/main/java/org/apache/royale/compiler/internal/codegen/typedefs/DummyNode.java b/compiler-externc/src/main/java/org/apache/royale/compiler/internal/codegen/typedefs/DummyNode.java
index 776335a..1d19bc1 100644
--- a/compiler-externc/src/main/java/org/apache/royale/compiler/internal/codegen/typedefs/DummyNode.java
+++ b/compiler-externc/src/main/java/org/apache/royale/compiler/internal/codegen/typedefs/DummyNode.java
@@ -19,8 +19,6 @@
 
 package org.apache.royale.compiler.internal.codegen.typedefs;
 
-import java.util.HashMap;
-
 import org.apache.royale.compiler.common.SourceLocation;
 import org.apache.royale.compiler.tree.ASTNodeID;
 import org.apache.royale.compiler.tree.as.IASNode;
diff --git a/compiler-test-utils/src/main/java/org/apache/royale/utils/MavenTestAdapter.java b/compiler-test-utils/src/main/java/org/apache/royale/utils/MavenTestAdapter.java
index 1e3a5d1..00a5055 100644
--- a/compiler-test-utils/src/main/java/org/apache/royale/utils/MavenTestAdapter.java
+++ b/compiler-test-utils/src/main/java/org/apache/royale/utils/MavenTestAdapter.java
@@ -24,7 +24,6 @@ import org.apache.commons.compress.archivers.ArchiveException;
 import org.apache.commons.compress.archivers.ArchiveInputStream;
 import org.apache.commons.compress.archivers.ArchiveStreamFactory;
 import org.apache.commons.io.FilenameUtils;
-import org.apache.commons.io.FileUtils;
 
 import java.io.*;
 import java.util.ArrayList;
diff --git a/royale-maven-plugin/src/main/java/org/apache/royale/maven/BaseCompileMojo.java b/royale-maven-plugin/src/main/java/org/apache/royale/maven/BaseCompileMojo.java
index dc46ef1..9046d92 100644
--- a/royale-maven-plugin/src/main/java/org/apache/royale/maven/BaseCompileMojo.java
+++ b/royale-maven-plugin/src/main/java/org/apache/royale/maven/BaseCompileMojo.java
@@ -15,10 +15,6 @@
 package org.apache.royale.maven;
 
 import org.apache.flex.tools.FlexTool;
-import org.apache.maven.plugin.MojoExecutionException;
-import org.apache.velocity.VelocityContext;
-
-import java.io.File;
 
 /**
  * Created by christoferdutz on 30.04.16.
diff --git a/royale-maven-plugin/src/main/java/org/apache/royale/maven/GenerateExterncMojo.java b/royale-maven-plugin/src/main/java/org/apache/royale/maven/GenerateExterncMojo.java
index 332a5a7..b0c2d35 100644
--- a/royale-maven-plugin/src/main/java/org/apache/royale/maven/GenerateExterncMojo.java
+++ b/royale-maven-plugin/src/main/java/org/apache/royale/maven/GenerateExterncMojo.java
@@ -20,11 +20,9 @@ import org.apache.maven.plugins.annotations.Mojo;
 import org.apache.maven.plugins.annotations.Parameter;
 import org.apache.maven.shared.model.fileset.FileSet;
 import org.apache.maven.shared.model.fileset.util.FileSetManager;
-import org.apache.maven.shared.utils.StringUtils;
 import org.apache.velocity.VelocityContext;
 
 import java.io.File;
-import java.util.Arrays;
 import java.util.LinkedList;
 import java.util.List;
 


[royale-compiler] 03/05: exclude factoyPath from RAT plugin

Posted by ca...@apache.org.
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-compiler.git

commit 27c38bdceedaa390866348c3f90935c1f161d8ab
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Fri Sep 14 17:26:32 2018 +0200

    exclude factoyPath from RAT plugin
---
 pom.xml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/pom.xml b/pom.xml
index 7dc3c0b..33584e6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -196,6 +196,8 @@
             <!-- Ignore IntelliJ IDEA project files -->
             <exclude>**/*.iml</exclude>
             <exclude>**/.idea/**</exclude>
+            <!-- Ignore VSCode/Java project files -->
+            <exclude>**/.factorypath</exclude>
             <!--
                 Exclude any eventually existing content of target directories.
                 Some times when building with a bigger maven reactor and then