common-utils
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.daisy.pipeline.modules.braille</groupId> <artifactId>common-utils</artifactId> <version>5.1.0</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.9.15</version> <relativePath>../../maven/parent/</relativePath> </parent> <artifactId>common-utils</artifactId> <version>5.1.0</version> <packaging>bundle</packaging> <name>DP2 Braille Modules :: common-utils</name> <dependencies> <dependency> <groupId>org.daisy.dotify</groupId> <artifactId>dotify.api</artifactId> </dependency> <dependency> <groupId>org.daisy.braille</groupId> <artifactId>braille-css</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>net.sf.saxon</groupId> <artifactId>Saxon-HE</artifactId> </dependency> <dependency> <groupId>org.daisy.libs</groupId> <artifactId>com.xmlcalabash</artifactId> </dependency> <dependency> <groupId>org.daisy.pipeline</groupId> <artifactId>calabash-adapter</artifactId> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-jdk14</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.core</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.compendium</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <scope>provided</scope> </dependency> <!-- runtime dependencies --> <!-- for saxon (FIXME: use for compilation?) --> <dependency> <groupId>org.daisy.libs</groupId> <artifactId>saxon-he</artifactId> <scope>runtime</scope> </dependency> <!-- for com.xmlcalabash & calabash-adapter (FIXME: verify + move elsewhere) --> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient-osgi</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpcore-osgi</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.daisy.pipeline</groupId> <artifactId>woodstox-osgi-adapter</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.daisy.pipeline</groupId> <artifactId>modules-registry</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.eclipse.persistence</groupId> <artifactId>javax.persistence</artifactId> <scope>runtime</scope> </dependency> <!-- test dependencies --> <dependency> <groupId>org.daisy.maven</groupId> <artifactId>xproc-engine-daisy-pipeline</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.daisy.xprocspec</groupId> <artifactId>xprocspec</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.daisy.maven</groupId> <artifactId>xprocspec-runner</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.daisy.maven</groupId> <artifactId>xspec-runner</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.servicemix.bundles</groupId> <artifactId>org.apache.servicemix.bundles.xmlresolver</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.daisy.pipeline</groupId> <artifactId>saxon-adapter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-jdk14</artifactId> <version>1.7.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.daisy.pipeline</groupId> <artifactId>pax-exam-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> <_dsannotations>*</_dsannotations> </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>