i have a project that has to have the -managers
per the flex issue of http://bugs.adobe.com/jira/browse/SDK-13856
my pom looks like this
<build>
<defaultGoal>install</defaultGoal>
<plugins>
<plugin>
<groupId>org.servebox.flex</groupId>
<artifactId>flex-plugin</artifactId>
<version>2.2.0</version>
<extensions>true</extensions>
<configuration>
<managers>flash.fonts.AFEFontManager</managers>
<mxmlFile>src/main/flex/Renderer.mxml</mxmlFile>
<locale>en_US</locale>
<debug>false</debug>
<optimize>true</optimize>
</configuration>
</plugin>
</plugins>
any help is greatly appreciated
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.