css-utils
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.daisy.pipeline.modules.braille</groupId> <artifactId>css-utils</artifactId> <version>3.7.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.12.0</version> <relativePath>../../maven/parent/</relativePath> </parent> <artifactId>css-utils</artifactId> <version>3.7.0</version> <packaging>bundle</packaging> <name>DP2 Braille Modules :: css-utils :: css-utils</name> <dependencies> <dependency> <groupId>org.daisy.pipeline.modules.braille</groupId> <artifactId>css-core</artifactId> </dependency> <dependency> <groupId>org.daisy.pipeline</groupId> <artifactId>common-utils</artifactId> </dependency> <dependency> <groupId>org.daisy.pipeline.modules.braille</groupId> <artifactId>common-utils</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>org.daisy.libs</groupId> <artifactId>jstyleparser</artifactId> </dependency> <dependency> <groupId>org.daisy.libs</groupId> <artifactId>io.bit3.jsass</artifactId> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</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.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.compendium</artifactId> <scope>provided</scope> </dependency> <!-- runtime dependencies --> <dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>common-utils</artifactId> </dependency> <dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>file-utils</artifactId> </dependency> <!-- test dependencies --> <dependency> <groupId>org.daisy.pipeline</groupId> <artifactId>logging-appender</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.css.calabash.impl.CssInlineStep$Provider, org.daisy.pipeline.braille.css.calabash.impl.CssShiftStringSetStep$Provider, org.daisy.pipeline.braille.css.calabash.impl.CssSplitStep$Provider, org.daisy.pipeline.braille.css.saxon.impl.ParseStylesheetDefinition, org.daisy.pipeline.braille.css.saxon.impl.RenderTableByDefinition </_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>