modules-test-helper
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.daisy.pipeline.build</groupId> <artifactId>modules-test-helper</artifactId> <version>2.2.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</groupId> <artifactId>daisy</artifactId> <version>4</version> <relativePath /> </parent> <groupId>org.daisy.pipeline.build</groupId> <artifactId>modules-test-helper</artifactId> <version>2.2.6</version> <packaging>bundle</packaging> <name>DAISY Pipeline 2 :: Modules Test Helper</name> <properties> <pax-exam.version>3.3.0</pax-exam.version> </properties> <dependencies> <dependency> <groupId>org.daisy.pipeline</groupId> <artifactId>pax-exam-helper</artifactId> <version>2.5.1</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> </dependency> <dependency> <groupId>org.daisy.pipeline</groupId> <artifactId>ds-to-spi-runtime</artifactId> <version>1.2.1</version> </dependency> <dependency> <groupId>org.daisy.maven</groupId> <artifactId>xprocspec-runner</artifactId> <version>1.2.8</version> </dependency> <dependency> <groupId>org.daisy.maven</groupId> <artifactId>xspec-runner</artifactId> <version>1.0.4</version> </dependency> <dependency> <groupId>org.daisy.xprocspec</groupId> <artifactId>xprocspec</artifactId> <version>1.4.3</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.daisy.maven</groupId> <artifactId>xproc-engine-daisy-pipeline</artifactId> <version>1.14.7</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.daisy.pipeline</groupId> <artifactId>saxon-adapter</artifactId> <version>4.2.0</version> <scope>runtime</scope> </dependency> <!-- for pax-exam annotations --> <!-- org.ops4j.pax.exam.spi.reactors --> <dependency> <groupId>org.ops4j.pax.exam</groupId> <artifactId>pax-exam-spi</artifactId> <version>${pax-exam.version}</version> <scope>provided</scope> </dependency> <!-- org.ops4j.pax.exam.junit --> <dependency> <groupId>org.ops4j.pax.exam</groupId> <artifactId>pax-exam-junit4</artifactId> <version>${pax-exam.version}</version> <scope>provided</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.2</version> <dependencies> <dependency> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-provider-gitexe</artifactId> <version>1.9.1</version> </dependency> </dependencies> <configuration> <tagNameFormat>@{project.artifactId}-@{project.version}</tagNameFormat> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>2.4.0</version> <extensions>true</extensions> <configuration> <archive> <addMavenDescriptor>false</addMavenDescriptor> </archive> <instructions> <Import-Package> org.daisy.common.spi;resolution:=optional, org.daisy.maven.xproc.xprocspec;resolution:=optional, org.daisy.maven.xspec;resolution:=optional, org.ops4j.pax.exam.junit;resolution:=optional, org.ops4j.pax.exam.junit.impl;resolution:=optional, org.daisy.pipeline.pax.exam;resolution:=optional, org.ops4j.pax.exam.spi.reactors;resolution:=optional, * </Import-Package> </instructions> </configuration> </plugin> </plugins> </build> <scm> <tag>modules-test-helper-2.2.6</tag> </scm> </project>