imageio-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.twelvemonkeys.imageio</groupId> <artifactId>imageio-core</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-core</artifactId> <name>TwelveMonkeys :: ImageIO :: Core</name> <description> TwelveMonkeys ImageIO core support classes. </description> <properties> <project.jpms.module.name>com.twelvemonkeys.imageio.core</project.jpms.module.name> </properties> <dependencies> <dependency> <groupId>com.twelvemonkeys.common</groupId> <artifactId>common-lang</artifactId> </dependency> <dependency> <groupId>com.twelvemonkeys.common</groupId> <artifactId>common-io</artifactId> </dependency> <dependency> <groupId>com.twelvemonkeys.common</groupId> <artifactId>common-image</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <configuration> <instructions> <Provide-Capability> osgi.serviceloader; osgi.serviceloader=javax.imageio.spi.ImageInputStreamSpi </Provide-Capability> </instructions> </configuration> </plugin> </plugins> </build> </project>