Hi Oliver,
I'm very interested in a Maven 2 plugin for Flex, I have played with
Maven but don't exactly know what needs to happen for a plugin, is
there any scripting involved or is it more a config of xml files thing?
Thijs
Op 13-dec-2006, om 13:05 heeft Oliver Lietz het volgende geschreven:
Hello List,
I've stripped the WEB-INF directory of my Flex/Spring project down
to this:
applicationContext.xml
web.xml
./classes
commons-logging.properties
log4j.properties
./flex
data-management-config.xml
license.properties
messaging-config.xml
proxy-config.xml
remoting-config.xml
services-config.xml
The project's pom.xml contains the following Flex dependencies:
<dependencies>
[...]
<!-- flex -->
<dependency>
<groupId>flex</groupId>
<artifactId>flex-messaging</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>flex</groupId>
<artifactId>flex-messaging-common</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>flex</groupId>
<artifactId>flex-messaging-opt</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>flex</groupId>
<artifactId>flex-messaging-req</artifactId>
<version>2.0</version>
</dependency>
<!-- flex commons -->
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.3</version>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
<version>3.0.1</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.0.4</version>
</dependency>
<!-- flex concurrent -->
<dependency>
<groupId>backport-util-concurrent</groupId>
<artifactId>backport-util-concurrent</artifactId>
<version>2.2</version>
</dependency>
<dependency>
<groupId>concurrent</groupId>
<artifactId>concurrent</artifactId>
<version>1.3.4</version>
</dependency>
</dependencies>
This works fine with compiled swfs and remoting so far. The Flex
jars are on
my local repository. I would like to see a mavenized version of
Flex and an
official Maven2 repository (filed a wish on that).
Any comments on this?
Is there any progress made on a mxmlc/compc plugin for Maven2?
O.