imageio-native-common
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.ghosthack</groupId>
<artifactId>imageio-native-common</artifactId>
<version>2.0.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.ghosthack</groupId>
<artifactId>imageio-native-parent</artifactId>
<version>2.0.0</version>
</parent>
<artifactId>imageio-native-common</artifactId>
<packaging>jar</packaging>
<name>imageio-native-common</name>
<description>
Shared imageio-native routing API, routing SPI, backend service contract,
deterministic ownership resolution, and image format detection.
</description>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals><goal>test-jar</goal></goals>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>io.github.ghosthack.imageio.common.test.fixtures</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>