xspec-runner
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.daisy.maven</groupId> <artifactId>xspec-runner</artifactId> <version>1.0.5</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>3</version> <relativePath /> </parent> <groupId>org.daisy.maven</groupId> <artifactId>xspec-runner</artifactId> <version>1.0.5</version> <packaging>bundle</packaging> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>24.0-android</version> </dependency> <dependency> <groupId>org.daisy.libs</groupId> <artifactId>saxon-he</artifactId> <version>9.8.0.8</version> </dependency> <dependency> <groupId>org.apache.servicemix.bundles</groupId> <artifactId>org.apache.servicemix.bundles.xmlresolver</artifactId> <version>1.2_5</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.2</version> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.compendium</artifactId> <version>4.3.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.daisy.pipeline</groupId> <artifactId>ds-to-spi-runtime</artifactId> <version>1.0.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> <version>1.3</version> <scope>test</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> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <configuration> <instructions> <Import-Package> net.sf.saxon.*;version="[9.8.0,9.8.1)", !org.daisy.common.spi, * </Import-Package> <_dsannotations>org.daisy.maven.xspec.XSpecRunner</_dsannotations> </instructions> </configuration> </plugin> <plugin> <groupId>org.daisy.pipeline.build</groupId> <artifactId>ds-to-spi-maven-plugin</artifactId> <version>1.0.0</version> <executions> <execution> <id>generate-spi-classes</id> <phase>generate-sources</phase> <goals> <goal>generate-spi-classes</goal> </goals> <configuration> <includes>org.daisy.maven.xspec.XSpecRunner</includes> </configuration> </execution> </executions> </plugin> </plugins> </build> <scm> <tag>xspec-runner-1.0.5</tag> </scm> </project>