Skip to content

Commit

Permalink
o initial flex client support
Browse files Browse the repository at this point in the history
  • Loading branch information
rainerh committed Apr 19, 2009
1 parent bc5feb1 commit a79a055
Show file tree
Hide file tree
Showing 14 changed files with 1,340 additions and 16 deletions.
50 changes: 38 additions & 12 deletions clients/flex/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,25 +17,51 @@
<build>
<sourceDirectory>src/main/flex</sourceDirectory>
<testSourceDirectory>src/test/flex</testSourceDirectory>

<resources>
<resource>
<directory>${basedir}/src/main/resources</directory>
</resource>
<resource>
<directory>${basedir}/target/generated-resources</directory>
</resource>
</resources>

<plugins>
<plugin>
<groupId>org.sonatype.flexmojos</groupId>
<artifactId>flexmojos-maven-plugin</artifactId>
<version>3.0.0</version>
<extensions>true</extensions>
<configuration>
<debug>true</debug>
<sourceFile>StrutterFlex.mxml</sourceFile>
<sourcePaths>
<path>${basedir}/src/main/flex</path>
<path>${basedir}/src/main/resources</path>
</sourcePaths>

<themes>
<theme>${basedir}/src/main/resources/main.css</theme>
</themes>
<includeFiles>
<file>${basedir}/src/main/resources/user.jpg</file>
</includeFiles>
<as3>true</as3>
</configuration>
<executions>
<execution>
<goals>
<goal>wrapper</goal>
</goals>
<configuration>
<parameters>
<swf>${build.finalName}</swf>
<width>100%</width>
<height>100%</height>
</parameters>
</configuration>
</execution>
<execution>
<goals>
<goal>wrapper</goal>
</goals>
<configuration>
<parameters>
<swf>${build.finalName}</swf>
<width>100%</width>
<height>100%</height>
</parameters>
</configuration>
</execution>
</executions>
</plugin>

Expand Down
4 changes: 0 additions & 4 deletions clients/flex/src/main/flex/FlexStrutter.mxml

This file was deleted.

9 changes: 9 additions & 0 deletions clients/flex/src/main/flex/StrutterFlex.mxml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" ?>
<mx:Application
xmlns:mx="http://www.adobe.com/2006/mxml"
xmlns:strutter="org.aurifa.demo.strutter.*"
height="100%"
width="100%" >
<mx:Style source="main.css" />
<strutter:Strutter />
</mx:Application>
Loading

0 comments on commit a79a055

Please sign in to comment.