handlebars-helpers
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.iterable</groupId> <artifactId>handlebars-helpers</artifactId> <version>5.0.0-M1</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/maven-v4_0_0.xsd"> <parent> <groupId>com.iterable</groupId> <artifactId>handlebars.java</artifactId> <version>5.0.0-M1</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.iterable</groupId> <artifactId>handlebars-helpers</artifactId> <name>Handlebars Helpers</name> <description>A collection helpers donated by the community</description> <dependencies> <dependency> <groupId>com.iterable</groupId> <artifactId>handlebars</artifactId> <version>${project.version}</version> </dependency> <!-- commons-lang3 --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> <version>2.12.0</version> <optional>true</optional> </dependency> <!-- Servlet API --> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.iterable</groupId> <artifactId>handlebars</artifactId> <version>${project.version}</version> <scope>test</scope> <classifier>tests</classifier> </dependency> <!-- Test dependencies --> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> <scope>test</scope> </dependency> </dependencies> </project>