Jeff-ServeBox - 2009-06-29

Hello,
i'm not sure I have understood your question.
If you need to add specific a font manager JAR file, you should use the Maven dependency plugin (Adobe font managers are not open source so we can't distribute them).

<plugins>
<plugin>
<groupId>org.servebox.flex</groupId>
<artifactId>flex-plugin</artifactId>
<version>2.2.0</version>
<extensions>true</extensions>
<dependencies>
<dependency>
PLACE YOUR FONT MANAGER DEP HERE
</dependency>
</dependencies>
<configuration>
<managers>flash.fonts.AFEFontManager</managers>
...
</configuration>
</plugin>
</plugins>

The JAR should be deployed to your own repository.

Hope this helps,
Jef.