Hi Everyone,
I want to compile actionscript to swf. I need to do this so I can use a
standalone actionscript library in another royale project.
<dependency>
<groupId>com.adobe.flash.framework</groupId>
<artifactId>playerglobal</artifactId>
<version>20.0</version>
<type>swc</type>
<scope>provided</scope>
</dependency>
The above dependency does not download.
What is the maven repository url for flash ? After researching the internet
I have tried the below. It does not work
<repositories>
<repository>
<id>jpresso</id>
<url>http://repository.jspresso.org/maven2/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>jpresso</id>
<url>http://repository.jspresso.org/maven2/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>