You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by jo...@apache.org on 2014/03/23 14:09:46 UTC

[12/17] git commit: [flex-falcon] [refs/heads/maven] - bump JFlex dependency plugin version to 1.5.0

bump JFlex dependency plugin version to 1.5.0

Signed-off-by: Jose Barragan <jo...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/38024323
Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/38024323
Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/38024323

Branch: refs/heads/maven
Commit: 380243231da6407cd8f63bd45cfb6028191862b2
Parents: b9c3b20
Author: Jose Barragan <jo...@apache.org>
Authored: Fri Feb 28 19:10:24 2014 +0100
Committer: Jose Barragan <jo...@apache.org>
Committed: Sun Mar 23 14:09:19 2014 +0100

----------------------------------------------------------------------
 compiler/pom.xml | 26 +++++++++++---------------
 1 file changed, 11 insertions(+), 15 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/38024323/compiler/pom.xml
----------------------------------------------------------------------
diff --git a/compiler/pom.xml b/compiler/pom.xml
index 3ecc4f0..fb92b95 100644
--- a/compiler/pom.xml
+++ b/compiler/pom.xml
@@ -13,7 +13,7 @@
 
     <artifactId>compiler</artifactId>
     <name>Falcon Compiler</name>
-    <description>Falcon Flex main compiler</description>
+    <description>The Falcon compiler</description>
 
     <properties>
         <javac.debug>true</javac.debug>
@@ -25,14 +25,13 @@
     <build>
         <sourceDirectory>src</sourceDirectory>
         <plugins>
-            <!-- JFLEX 1.4.3 http://jflex.sourceforge.net/maven-jflex-plugin/usage.html -->
             <plugin>
                 <groupId>de.jflex</groupId>
-                <artifactId>maven-jflex-plugin</artifactId>
-                <version>1.4.3</version>
+                <artifactId>jflex-maven-plugin</artifactId>
+                <version>1.5.0</version>
                 <configuration>
-                    <outputDirectory>target/generated/src</outputDirectory>
-                    <skeleton>src/org/apache/flex/compiler/internal/parsing/as/skeleton.default</skeleton>
+                    <outputDirectory>${project.build.directory}/generated/src</outputDirectory>
+                    <skeleton>${project.build.sourceDirectory}/org/apache/flex/compiler/internal/parsing/as/skeleton.default</skeleton>
                 </configuration>
                 <executions>
                     <execution>
@@ -42,10 +41,9 @@
                         </goals>
                         <configuration>
                             <lexDefinitions>
-                                <lexDefinition>src/org/apache/flex/compiler/internal/parsing/as/RawASTokenizer.lex
-                                </lexDefinition>
+                                <lexDefinition>${project.build.sourceDirectory}/org/apache/flex/compiler/internal/parsing/as/RawASTokenizer.lex</lexDefinition>
                             </lexDefinitions>
-                            <skeleton>src/org/apache/flex/compiler/internal/parsing/as/skeleton.falcon</skeleton>
+                            <skeleton>${project.build.sourceDirectory}/org/apache/flex/compiler/internal/parsing/as/skeleton.falcon</skeleton>
                         </configuration>
                     </execution>
                     <execution>
@@ -55,8 +53,7 @@
                         </goals>
                         <configuration>
                             <lexDefinitions>
-                                <lexDefinition>src/org/apache/flex/compiler/internal/parsing/as/RawASDocTokenizer.lex
-                                </lexDefinition>
+                                <lexDefinition>${project.build.sourceDirectory}/org/apache/flex/compiler/internal/parsing/as/RawASDocTokenizer.lex</lexDefinition>
                             </lexDefinitions>
                         </configuration>
                     </execution>
@@ -67,8 +64,7 @@
                         </goals>
                         <configuration>
                             <lexDefinitions>
-                                <lexDefinition>src/org/apache/flex/compiler/internal/parsing/mxml/RawMXMLTokenizer.lex
-                                </lexDefinition>
+                                <lexDefinition>${project.build.sourceDirectory}/org/apache/flex/compiler/internal/parsing/mxml/RawMXMLTokenizer.lex</lexDefinition>
                             </lexDefinitions>
                         </configuration>
                     </execution>
@@ -141,7 +137,7 @@
             <plugin>
                 <groupId>org.codehaus.mojo</groupId>
                 <artifactId>antlr3-maven-plugin</artifactId>
-                <version>3.1.0</version>
+                <version>1.0</version>
                 <configuration>
                     <sourceDirectory>src/org/apache/flex/compiler/internal</sourceDirectory>
                     <outputDirectory>target/generated/src</outputDirectory>
@@ -249,4 +245,4 @@
         </dependency>
     </dependencies>
 
-</project>
\ No newline at end of file
+</project>