image-utils
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.daisy.pipeline.modules</groupId>
<artifactId>image-utils</artifactId>
<version>1.0.8</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>org.daisy.pipeline.modules</groupId>
<artifactId>modules-parent</artifactId>
<version>1.14.30</version>
<relativePath>../../parent/</relativePath>
</parent>
<artifactId>image-utils</artifactId>
<version>1.0.8</version>
<packaging>bundle</packaging>
<name>DAISY Pipeline 2 module :: Image Utilities</name>
<dependencies>
<dependency>
<groupId>org.daisy.libs</groupId>
<artifactId>saxon-he</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<!--
test dependencies
-->
<dependency>
<groupId>org.daisy.pipeline</groupId>
<artifactId>calabash-adapter</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<expose-services>
org.daisy.pipeline.modules.impl.Module_image_utils,
org.daisy.pipeline.image.saxon.impl.ImageDimensions
</expose-services>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.daisy.maven</groupId>
<artifactId>xspec-maven-plugin</artifactId>
<executions>
<execution>
<id>xspecTest</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Import-Package>
net.sf.saxon.*;version="${saxon.versionRange}",
!org.daisy.common.spi,
*
</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>