pef-calabash
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.daisy.pipeline.modules.braille</groupId>
<artifactId>pef-calabash</artifactId>
<version>3.2.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.braille</groupId>
<artifactId>braille-modules-parent</artifactId>
<version>1.11.2</version>
<relativePath>../../maven/parent/</relativePath>
</parent>
<artifactId>pef-calabash</artifactId>
<version>3.2.2</version>
<packaging>bundle</packaging>
<name>DP2 Braille Modules :: pef-utils :: pef-calabash</name>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.daisy.libs</groupId>
<artifactId>saxon-he</artifactId>
</dependency>
<dependency>
<groupId>org.daisy.libs</groupId>
<artifactId>com.xmlcalabash</artifactId>
</dependency>
<dependency>
<groupId>org.daisy.pipeline.modules.braille</groupId>
<artifactId>common-utils</artifactId>
</dependency>
<dependency>
<groupId>org.daisy.pipeline.modules.braille</groupId>
<artifactId>css-core</artifactId>
</dependency>
<dependency>
<groupId>org.daisy.pipeline.modules.braille</groupId>
<artifactId>pef-core</artifactId>
</dependency>
<dependency>
<groupId>org.daisy.braille</groupId>
<artifactId>braille-utils.pef-tools</artifactId>
</dependency>
<dependency>
<groupId>org.daisy.pipeline</groupId>
<artifactId>calabash-adapter</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<!--
runtime dependencies
-->
<dependency>
<groupId>org.daisy.braille</groupId>
<artifactId>braille-utils.impl</artifactId>
<scope>runtime</scope>
</dependency>
<!--
test dependencies
-->
<dependency>
<groupId>org.daisy.pipeline</groupId>
<artifactId>logging-activator</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.daisy.pipeline</groupId>
<artifactId>framework-volatile</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.daisy.pipeline.build</groupId>
<artifactId>modules-test-helper</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.ops4j.pax.exam</groupId>
<artifactId>maven-paxexam-plugin</artifactId>
<executions>
<execution>
<id>generate-depends-file</id>
<goals>
<goal>generate-depends-file</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Import-Package>
net.sf.saxon.*;version="${saxon.versionRange}",
*
</Import-Package>
<_dsannotations>
org.daisy.pipeline.braille.pef.impl.ConfigurableFileFormat$Provider,
org.daisy.pipeline.braille.pef.calabash.impl.PEF2TextStep$Provider,
org.daisy.pipeline.braille.pef.calabash.impl.Text2PEFStep$Provider,
org.daisy.pipeline.braille.pef.calabash.impl.ValidateStep$Provider
</_dsannotations>
<Provide-Capability>
xproc.step;name="{http://www.daisy.org/ns/2008/pef}pef2text",
xproc.step;name="{http://www.daisy.org/ns/2008/pef}text2pef",
xproc.step;name="{http://www.daisy.org/ns/2008/pef}validate"
</Provide-Capability>
</instructions>
</configuration>
<executions>
<execution>
<id>bundle-before-test</id>
<phase>generate-test-resources</phase>
<goals>
<goal>bundle</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>