Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>It means that spark.swc is not included in your swf, here is how I configure FlexMojo:</p> <pre><code>&lt;configuration&gt; &lt;flashplayer.version.swf&gt;13&lt;/flashplayer.version.swf&gt; &lt;sourceFile&gt;org/htulipe/MyApp.mxml&lt;/sourceFile&gt; &lt;/configuration&gt; </code></pre> <p>And here is how I declare Flash dependencies:</p> <pre><code>&lt;dependencies&gt; &lt;dependency&gt; &lt;groupId&gt;com.adobe.flex.framework&lt;/groupId&gt; &lt;artifactId&gt;flex-framework&lt;/artifactId&gt; &lt;version&gt;${flex.sdk.version}&lt;/version&gt; &lt;type&gt;pom&lt;/type&gt; &lt;exclusions&gt; &lt;exclusion&gt; &lt;groupId&gt;com.adobe.flex.framework&lt;/groupId&gt; &lt;artifactId&gt;playerglobal&lt;/artifactId&gt; &lt;/exclusion&gt; &lt;/exclusions&gt; &lt;/dependency&gt; &lt;dependency&gt; &lt;groupId&gt;com.adobe.flex.framework&lt;/groupId&gt; &lt;artifactId&gt;playerglobal&lt;/artifactId&gt; &lt;version&gt;${flex.sdk.version}&lt;/version&gt; &lt;classifier&gt;${flex.player.version.major}.${flex.player.version.minor}&lt;/classifier&gt; &lt;type&gt;swc&lt;/type&gt; &lt;/dependency&gt; &lt;dependency&gt; &lt;groupId&gt;com.adobe.flexunit&lt;/groupId&gt; &lt;artifactId&gt;flexunit&lt;/artifactId&gt; &lt;version&gt;4.0-rc-1&lt;/version&gt; &lt;type&gt;swc&lt;/type&gt; &lt;scope&gt;test&lt;/scope&gt; &lt;/dependency&gt; &lt;/dependencies&gt; </code></pre> <p>Hope it may help. Also I would recommand not setting to true the iKnowWhatImDoingPleaseBreakMyBuildIwontBlameFlexmojosForStopWorking option. The option's name is quite eloquent. :) </p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload