gotmpl4j-sprig
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.alexmond</groupId>
<artifactId>gotmpl4j-sprig</artifactId>
<version>1.3.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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.alexmond</groupId>
<artifactId>gotmpl4j-parent</artifactId>
<version>1.3.0</version>
</parent>
<artifactId>gotmpl4j-sprig</artifactId>
<name>Sprig Functions for Go Template</name>
<description>Sprig template function library for the gotmpl4j Go template engine</description>
<properties>
<automatic.module.name>org.alexmond.gotmpl4j.sprig</automatic.module.name>
</properties>
<dependencies>
<!-- Core template engine (Function interface, FunctionProvider SPI) -->
<dependency>
<groupId>org.alexmond</groupId>
<artifactId>gotmpl4j-core</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<!-- HTTP client for network functions -->
<dependency>
<groupId>org.apache.httpcomponents.client5</groupId>
<artifactId>httpclient5</artifactId>
</dependency>
<!-- Commons Codec for Base32, hex encoding, and password hashing -->
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</dependency>
<!-- Bouncy Castle for certificate/key generation and BCrypt (htpasswd/bcrypt) -->
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk18on</artifactId>
</dependency>
<!-- Semver4j for semantic version parsing and comparison -->
<dependency>
<groupId>org.semver4j</groupId>
<artifactId>semver4j</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<!-- Parses the JSON data column of the Sprig runtv conformance fixtures -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>