validation-utils
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>validation-utils</artifactId> <version>1.0.6</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.13.7</version> <relativePath>../../parent/</relativePath> </parent> <artifactId>validation-utils</artifactId> <version>1.0.6</version> <packaging>bundle</packaging> <name>DAISY Pipeline 2 module :: validation-utils</name> <dependencies> <!-- runtime dependencies --> <dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>file-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>common-utils</artifactId> <scope>runtime</scope> </dependency> <!-- for p:validate-with-relax-ng (used in l:relax-ng-report and px:combine-validation-reports) --> <dependency> <groupId>org.daisy.libs</groupId> <artifactId>jing</artifactId> <scope>runtime</scope> </dependency> <!-- test dependencies --> <dependency> <groupId>org.daisy.maven</groupId> <artifactId>xproc-engine-daisy-pipeline</artifactId> <scope>test</scope> </dependency> <!-- for MessageStorage, needed by JobMonitorFactory FIXME: make optional --> <dependency> <groupId>org.daisy.pipeline</groupId> <artifactId>framework-volatile</artifactId> <scope>test</scope> </dependency> </dependencies> <properties> <expose-services> org.daisy.pipeline.modules.impl.Module_validation_utils </expose-services> </properties> <build> <plugins> <plugin> <groupId>org.daisy.maven</groupId> <artifactId>xproc-maven-plugin</artifactId> <executions> <execution> <phase>test</phase> <goals> <goal>xprocspec</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>