dtbook-to-daisy3
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>dtbook-to-daisy3</artifactId> <version>3.5.3</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.15.1</version> <relativePath>../../parent/</relativePath> </parent> <artifactId>dtbook-to-daisy3</artifactId> <version>3.5.3</version> <packaging>bundle</packaging> <name>DAISY Pipeline 2 module :: DTBook to DAISY 3</name> <dependencies> <dependency> <groupId>org.daisy.pipeline</groupId> <artifactId>framework-core</artifactId> </dependency> <dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>common-utils</artifactId> </dependency> <dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>css-utils</artifactId> </dependency> <dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>daisy3-utils</artifactId> </dependency> <dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>dtbook-tts</artifactId> </dependency> <dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>dtbook-utils</artifactId> </dependency> <dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>fileset-utils</artifactId> </dependency> <dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>file-utils</artifactId> </dependency> <dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>smil-utils</artifactId> </dependency> <!-- test dependencies --> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.daisy</groupId> <artifactId>zedval</artifactId> <version>2.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.daisy.pipeline</groupId> <artifactId>xproc-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>xmlunit</groupId> <artifactId>xmlunit</artifactId> <version>1.5</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <scope>test</scope> </dependency> <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-mocks</artifactId> <scope>test</scope> </dependency> <!-- for zedval --> <dependency> <groupId>org.daisy</groupId> <artifactId>daisy-util</artifactId> <version>20100125</version> <scope>test</scope> </dependency> <dependency> <groupId>javazoom</groupId> <artifactId>jlayer</artifactId> <version>1.0.1</version> <scope>test</scope> </dependency> <dependency> <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> <version>2.9.1</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-cli</groupId> <artifactId>commons-cli</artifactId> <version>1.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.w3c.css</groupId> <artifactId>sac</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <!-- <dependency> <groupId>batik</groupId> <artifactId>batik-css</artifactId> <version>1.6-1</version> <scope>test</scope> </dependency> <dependency> <groupId>batik</groupId> <artifactId>batik-util</artifactId> <version>1.6-1</version> <scope>test</scope> </dependency> <dependency> <groupId>net.sourceforge.jchardet</groupId> <artifactId>jchardet</artifactId> <version>1.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.idpf</groupId> <artifactId>epubcheck</artifactId> <version>3.0</version> <scope>test</scope> </dependency> <dependency> <groupId>com.ibm.icu</groupId> <artifactId>icu4j</artifactId> <version>3.8</version> <scope>test</scope> </dependency> <dependency> <groupId>org.ccil.cowan.tagsoup</groupId> <artifactId>tagsoup</artifactId> <version>1.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.codehaus.woodstox</groupId> <artifactId>wstx-lgpl</artifactId> <version>3.2.9</version> <scope>test</scope> </dependency> --> </dependencies> <properties> <expose-services> org.daisy.pipeline.modules.impl.Module_dtbook_to_daisy3, org.daisy.pipeline.script.impl.XProcScript_dtbook_to_daisy3 </expose-services> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <systemPropertyVariables> <target.dir>${project.build.directory}</target.dir> </systemPropertyVariables> </configuration> <!-- for some reason XProcSpecTest fails with OSGi if FullConversionTest is also present, therefore run them in separate phases --> <executions> <execution> <id>default-test</id> <configuration> <excludes> <exclude>**/FullConversionTest.java</exclude> </excludes> </configuration> </execution> <execution> <id>FullConversionTest</id> <phase>test</phase> <goals> <goal>test</goal> </goals> <configuration> <includes> <include>**/FullConversionTest.java</include> </includes> </configuration> </execution> </executions> </plugin> </plugins> </build> <repositories> <!-- for jlayer, daisy-util and zedval --> <repository> <id>test-deps-lib</id> <url>${project.baseUri}/lib</url> <releases> <enabled>true</enabled> <checksumPolicy>warn</checksumPolicy> </releases> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories> </project>