Hi,
 actually I'm using this configuration to compile javafx file[0]. My problem is
that in this way in hybrid projects with standard java source file and javafx
source file the compiler ignore completely the .java files.

 How could make the Maven compiler to compile both .java and .fx files?

Thanks

[0]
<plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.0.2</version>
        <configuration>
                <source>1.6</source>
                <target>1.6</target>
                <compilerId>javafxc</compilerId>
                <include>**/*.fx</include>
                <compilerArguments>
                        <jfxHome>false</jfxHome>
                </compilerArguments>
        </configuration>
        <dependencies>
                <dependency>
                        <groupId>net.sf.m2javafxc</groupId>
                        <artifactId>plexus-compiler-javafxc</artifactId>
                        <version>0.1-SNAPSHOT</version>
                </dependency>
                <dependency>
                        <groupId>javafx</groupId>
                        <artifactId>javafxc</artifactId>
                        <version>0.1-SNAPSHOT</version>
                        <scope>system</scope>
                        <systemPath>${javafx.home}/lib/javafxc.jar</systemPath>
                </dependency>
        </dependencies>
</plugin>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to