Well,

Maven approach is a little bit different.  Instead of an argument, you add
dependencies.

For example, to get test library support:

<project>
...

        <dependencies>
...
                <!-- Flex-Mojos Unit testing support -->
                <dependency>
                        <groupId>info.flex-mojos</groupId>
                        <artifactId>testing-support</artifactId>
                        <version>2.0M9</version>
                        <type>swc</type>
                        <scope>test</scope>
                </dependency>
        </dependencies>

</project>


So you should add any required libs as dependencies there.


VELO

On Sun, Jan 25, 2009 at 4:40 PM, Michael <[email protected]> wrote:

>
> Hi all,
>
> I'm currently trying to migrate our Ant script to use Flex mojos and
> I'm having trouble on this line(which compiles some swc components
> before the rest of the actionscript).
>
> <compiler.library-path dir="${src.assets}" append="true">
>                       <include name="**/*.swc" />
>                     </compiler.library-path>
>
> That folder can be chaged to only have swc's in it, but how would I
> specify that that folder should be compiled?
>
> I'm guessing it would be an argument here:
>
> <plugin>
>                <groupId>info.rvin.mojo</groupId>
>                <artifactId>flex-compiler-mojo</artifactId>
>                <configuration> ??? </configuration>
> </plugin>
>
> perhaps an <incudeLibrary>?
>
> Any help would be appreciated!
>
> Thanks
> Michael
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Flex Mojos" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/flex-mojos?hl=en?hl=en

http://blog.flex-mojos.info/
-~----------~----~----~----~------~----~------~--~---

Reply via email to