common-utils
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.daisy.pipeline.modules.braille</groupId> <artifactId>common-utils</artifactId> <version>6.0.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.11.2</version> <relativePath>../maven/parent/</relativePath> </parent> <artifactId>common-utils</artifactId> <version>6.0.0</version> <packaging>bundle</packaging> <name>DP2 Braille Modules :: common-utils</name> <dependencies> <dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>common-utils</artifactId> </dependency> <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>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</groupId> <artifactId>calabash-adapter</artifactId> </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> <!-- test dependencies --> <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.common.saxon.impl.TextTransformDefinition, org.daisy.pipeline.braille.common.saxon.impl.MessageDefinition, org.daisy.pipeline.braille.common.saxon.impl.ProgressDefinition, org.daisy.pipeline.braille.common.calabash.impl.PxTransformStep$StepProvider </_dsannotations> </instructions> </configuration> <executions> <execution> <id>bundle-before-test</id> <phase>generate-test-resources</phase> <goals> <goal>bundle</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.daisy.pipeline.build</groupId> <artifactId>modules-build-helper</artifactId> <executions> <execution> <id>package-list</id> <phase>prepare-package</phase> <goals> <goal>dependencies-package-list</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/dependencies-package-list/</outputDirectory> <includes> org.daisy.pipeline.*, org.daisy.common.* </includes> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <source>1.8</source> <target>1.8</target> <offlineLinks> <offlineLink> <url>http://daisy.github.io/pipeline/api/</url> <location>${project.build.directory}/dependencies-package-list/</location> </offlineLink> <offlineLink> <!-- javadoc.io does not contain package-list file --> <url>http://javadoc.io/doc/org.slf4j/slf4j-api/1.7.2</url> <location>https://www.slf4j.org/apidocs</location> </offlineLink> </offlineLinks> <links> <link>https://google.github.io/guava/releases/15.0/api/docs</link> <link>http://brailleapps.github.io/dotify.api/4.1.0/javadoc</link> <link>https://osgi.org/javadoc/r5/core</link> <link>https://osgi.org/javadoc/r5/cmpn</link> </links> <excludePackageNames>*.impl:*.impl.*</excludePackageNames> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>