Rasterizing SVGs

To rasterize all SVGs in src/main/svg to PNGs in target/generated-resources/images, add the following to your pom:

<project>
  ...
    <build>
      ...
      <plugins>
        ...
        <plugin>
          <groupId>org.codehaus.mojo</groupId>
          <artifactId>batik-maven-plugin</artifactId>
          <version>1.0-beta-1</version>
        </plugin>
        ...
      </plugins>
      ...
    </build>
  ...
</project>

Then execute the following command to run Batik:

mvn batik:rasterize