I just fixed three more bugs:
http://jangaroo.myjetbrains.com/youtrack/issues?q=Fix+versions%3A+1.0.2+Subsystem%3A+jooflash
...and ChessFlash now runs perfectly with JooFlash 1.0.2-SNAPSHOT (at
least as far as I can tell).
I'm gonna do some more QA with other JooFlash applications and then
release jangaroo-libs 1.0.2!
Stay tuned...
I also added a solution that copies the images from the lib folder to
pom.xml.
I admit it is not easy to figure out.
Just use this maven-war-plugin configuration:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.1.1</version>
<configuration>
<webResources>
<resource>
<directory>src/main/webapp</directory>
</resource>
<resource>
<directory>lib</directory>
<targetPath>joo/lib</targetPath>
</resource>
</webResources>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
Also, you use the wrong property for the jangaroo-maven-plugin:
instead of jangaroo_libs_version, it should use jangaroo_version,
which will stay on 1.0.1 when you move to jangaroo-libs 1.0.2.
Greetings
-Frank-