[SOLVED] VideoRecorderAppState 3.3.2 Maven

Hi guys,

I’m using jme in IntelliJ IDE and I switched my existing application to a maven project, using data as described here (using version 3.3.2 instead of 3.2.0):

However, the VideoRecorderAppState seems not to exist, so my original import does not work anymore.

Screenshots are still working without any issues. Could anybody tell me, what I’m doing wrong? I’m not a big expert, so there might be a stupid, nooby error.

My pom.xml looks as follows:

image

<repositories>
    <repository>
        <id>jmonkey-testdata</id>
        <url>https://dl.bintray.com/stephengold/org.jmonkeyengine</url>
    </repository>
    <repository>
        <id>jcenter</id>
        <url>https://jcenter.bintray.com</url>
    </repository>
    <repository>
        <id>jmonkey-bintray</id>
        <url>https://bintray.com/jmonkeyengine</url>
    </repository>
</repositories>

Thanks

Because you need jme3-desktop as dependency.

1 Like

ah, yes…how simple…the scope was the issue. Removed it and it seems to work. Thanks a lot.