Using Java Advanced Imaging with Maven
To avoid donwloading the jars and installing them you can add a dependency on the spring repo. So change the normal dependency slightly: <dependency> <groupId>javax.media.jai</groupId> <artifactId>com.springsource.javax.media.jai.core</artifactId> <version>1.1.3</version> </dependency> and add a repository declaration: <repository> <id>com.springsource.repository.bundles.external</id> <name>SpringSource Enterprise Bundle Repository – External Bundle Releases</name> <url>http://repository.springsource.com/maven/bundles/external</url> </repository> And it should now work (it makes all the sun … Read more