epub-to-daisy
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>epub-to-daisy</artifactId> <version>1.0.2</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.3</version> <relativePath>../../parent/</relativePath> </parent> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>epub-to-daisy</artifactId> <version>1.0.2</version> <packaging>bundle</packaging> <name>DAISY Pipeline 2 module :: EPUB to DAISY</name> <dependencies> <dependency> <groupId>org.daisy.pipeline</groupId> <artifactId>framework-core</artifactId> </dependency> <!-- runtime dependencies --> <dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>common-utils</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>fileset-utils</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>epub-utils</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>epub2-to-epub3</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>epub3-to-epub3</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>epub3-to-daisy202</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>epub3-to-daisy3</artifactId> <scope>runtime</scope> </dependency> <!-- test dependencies --> <dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>nlp-omnilang-lexer</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>tts-common</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>audio-common</artifactId> <scope>test</scope> </dependency> </dependencies> <properties> <expose-services> org.daisy.pipeline.modules.impl.Module_epub_to_daisy, org.daisy.pipeline.script.impl.XProcScript_epub_to_daisy, org.daisy.pipeline.datatypes.impl.Datatype_px_epub_to_daisy_script_tts, org.daisy.pipeline.datatypes.impl.Datatype_px_epub_to_daisy_script_validation </expose-services> </properties> <build> <plugins> <plugin> <groupId>org.daisy.pipeline.build</groupId> <artifactId>ds-to-spi-maven-plugin</artifactId> <executions> <execution> <id>generate-spi-test-classes</id> <phase>process-test-sources</phase> <goals> <goal>generate-spi-test-classes</goal> </goals> <configuration> <includes> MockTTS, MockEncoder </includes> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>