braille-css
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.daisy.braille</groupId> <artifactId>braille-css</artifactId> <version>1.26.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</groupId> <artifactId>daisy</artifactId> <version>5</version> <relativePath /> </parent> <groupId>org.daisy.braille</groupId> <artifactId>braille-css</artifactId> <version>1.26.0</version> <packaging>bundle</packaging> <name>braille-css</name> <scm> <connection>scm:git:git@github.com:snaekobbi/braille-css.git</connection> <url>scm:git:git@github.com:snaekobbi/braille-css.git</url> <developerConnection>scm:git:git@github.com:snaekobbi/braille-css.git</developerConnection> <tag>1.26.0</tag> </scm> <dependencyManagement> <dependencies> <dependency> <groupId>org.daisy.libs</groupId> <artifactId>jstyleparser</artifactId> <version>1.20-p23</version> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>24.0-android</version> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.daisy.libs</groupId> <artifactId>jstyleparser</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <!-- test dependencies --> <dependency> <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> <version>2.11.0</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.0.11</version> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <tagNameFormat>@{project.version}</tagNameFormat> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>unpack</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>org.daisy.libs</groupId> <artifactId>jstyleparser</artifactId> <classifier>sources</classifier> </artifactItem> </artifactItems> <includes>*.g</includes> <outputDirectory>target/generated-sources/antlr3</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.antlr</groupId> <artifactId>antlr3-maven-plugin</artifactId> <version>3.5.2</version> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>antlr</goal> </goals> <configuration> <libDirectory>target/generated-sources/antlr3</libDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <archive> <addMavenDescriptor>false</addMavenDescriptor> </archive> </configuration> </plugin> </plugins> </build> </project>