common-utils
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>common-utils</artifactId> <version>3.1.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.0</version> <relativePath>../../parent/</relativePath> </parent> <artifactId>common-utils</artifactId> <version>3.1.3</version> <packaging>bundle</packaging> <name>DAISY Pipeline 2 module :: Common Utilities</name> <dependencies> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>org.daisy.libs</groupId> <artifactId>com.xmlcalabash</artifactId> </dependency> <dependency> <groupId>org.daisy.pipeline</groupId> <artifactId>calabash-adapter</artifactId> </dependency> <dependency> <groupId>org.daisy.pipeline</groupId> <artifactId>saxon-adapter</artifactId> </dependency> <dependency> <groupId>org.daisy.pipeline</groupId> <artifactId>common-utils</artifactId> </dependency> <dependency> <groupId>org.daisy.pipeline</groupId> <artifactId>xproc-api</artifactId> </dependency> <dependency> <groupId>org.daisy.libs</groupId> <artifactId>saxon-he</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> </dependencies> <properties> <expose-services> org.daisy.pipeline.modules.impl.Module_common_utils, org.daisy.pipeline.common.saxon.impl.ErrorDefinition, org.daisy.pipeline.common.saxon.impl.MessageDefinition, org.daisy.pipeline.common.saxon.impl.ProgressDefinition, org.daisy.pipeline.common.saxon.impl.NormalizeLangDefinition, org.daisy.pipeline.common.calabash.impl.Error, org.daisy.pipeline.common.calabash.impl.LogError, org.daisy.pipeline.common.calabash.impl.ChunkerStep$Provider </expose-services> </properties> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <configuration> <instructions> <Import-Package> net.sf.saxon.*;version="${saxon.versionRange}", !org.daisy.common.spi, * </Import-Package> </instructions> </configuration> </plugin> <plugin> <groupId>org.daisy.maven</groupId> <artifactId>xspec-maven-plugin</artifactId> <executions> <execution> <id>xspecTest</id> <phase>none</phase> </execution> </executions> </plugin> </plugins> </build> </project>