imageio-batik
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.twelvemonkeys.imageio</groupId> <artifactId>imageio-batik</artifactId> <version>3.12.0</version> </dependency>
<?xml version="1.0"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.twelvemonkeys.imageio</groupId> <artifactId>imageio</artifactId> <version>3.12.0</version> </parent> <artifactId>imageio-batik</artifactId> <name>TwelveMonkeys :: ImageIO :: Batik Plugin</name> <description> <![CDATA[ ImageIO wrapper for the Batik SVG Toolkit, enabling Scalable Vector Graphics (SVG) support. See the <a href="http://xmlgraphics.apache.org/batik/">Batik Home page</a> for more information.]]> </description> <properties> <project.jpms.module.name>com.twelvemonkeys.imageio.batik</project.jpms.module.name> <batik.version>1.17</batik.version> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <systemPropertyVariables> <com.twelvemonkeys.imageio.plugins.svg.allowExternalResources> true </com.twelvemonkeys.imageio.plugins.svg.allowExternalResources> </systemPropertyVariables> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <configuration> <instructions> <Provide-Capability> osgi.serviceloader; osgi.serviceloader=javax.imageio.spi.ImageReaderSpi </Provide-Capability> </instructions> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.twelvemonkeys.imageio</groupId> <artifactId>imageio-core</artifactId> </dependency> <dependency> <groupId>com.twelvemonkeys.imageio</groupId> <artifactId>imageio-core</artifactId> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.17.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.xmlgraphics</groupId> <artifactId>batik-rasterizer-ext</artifactId> <version>${batik.version}</version> <scope>provided</scope> <exclusions> <exclusion> <groupId>org.apache.xmlgraphics</groupId> <artifactId>batik-extensions</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.xmlgraphics</groupId> <artifactId>batik-extension</artifactId> <version>${batik.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.xmlgraphics</groupId> <artifactId>batik-anim</artifactId> <version>${batik.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.xmlgraphics</groupId> <artifactId>batik-svggen</artifactId> <version>${batik.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.xmlgraphics</groupId> <artifactId>batik-transcoder</artifactId> <version>${batik.version}</version> <scope>provided</scope> <!-- There seems to be some weirdness in the Batik/FOP poms (Batik depends on FOP 0.20-5) that screws things up, making everything end up depending on Batik 1.5, not the specified version --> <exclusions> <exclusion> <groupId>fop</groupId> <artifactId>fop</artifactId> </exclusion> </exclusions> </dependency> </dependencies> </project>