You can glean which 'apis you will need' from the <dependency> artifacts enumerated from the pom.xml for your Batik project lets say I wanted to implement batik-svggen I would then reference the artifacts enumerated in the batik-svggen-1.6.1.pom (pom.xml) seen here <project> <modelVersion>4.0.0</modelVersion> <groupId>batik</groupId> <artifactId>batik-svggen</artifactId> <name>Batik SVG Generator</name> <version>1.6-1</version> <description>Batik SVG Generator</description> <inceptionYear>2000</inceptionYear> <dependencies> <dependency> <groupId>batik</groupId> <artifactId>batik-gvt</artifactId> <version>1.6-1</version> </dependency> <dependency> <groupId>batik</groupId> <artifactId>batik-svg-dom</artifactId> <version>1.6-1</version> </dependency> </dependencies> </project> the contents of the dependencies in the pom state that "in order to build version 1.6-1 of batik-svggen I will need to reference (from either remote or local Repositories) the following dependencies"
batik-gvt version=1.6-1 batik-svg-dom version=1.6-1 since I have built (compiled, packaged) batik-gvt and batik-svg-dom (version 1.6-1) and have deployed both dependent artifacts to my (local) repository I can now build my master project <artifactId>batik-svggen</artifactId> <version>1.6-1</version> makes sense? Martin Gainty ______________________________________________ http://www.worldviewofglobalwarming.org/pages/chinareport.html Date: Thu, 25 Jul 2013 10:44:24 -0400 From: mark.fenb...@noaa.gov To: batik-users@xmlgraphics.apache.org Subject: Batik for inclusion? Greetings! I have just installed Batik earlier yesterday and have been successful in using it from the command-line. My desire, though, it to use Batik's features programmatically in my own Java apps, say to convert and SVG to a PNG internally, rather than from a command-line-driven stand-alone app. I have found the API Javadoc web pages along with examples, but the distribution I have does not contain these classes in any of the Jar files. Can someone point me to the right place to obtain the API Jar files, please? Mark --------------------------------------------------------------------- To unsubscribe, e-mail: batik-users-unsubscr...@xmlgraphics.apache.org For additional commands, e-mail: batik-users-h...@xmlgraphics.apache.org