Using Maven to import Processing Library returns error...

Hi, I tried to make a simple Hello World with processing and integrate it to my Maven project.

Unfortunately, I get the following error: Invalid class file: processing/core/PGraphics$AsyncImageSaver.class

In my pom file, I used the following:

<dependency>
  <groupId>org.processing</groupId>
  <artifactId>core</artifactId>
  <version>3.1.1</version>
  <optional>true</optional>
</dependency>

I also tried including jogl and gluegen, but it does not seem to be the source of the error (or does it?).

Thanks.

Tagged:

Answers

Sign In or Register to comment.