javalin-rendering
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.javalin</groupId> <artifactId>javalin-rendering</artifactId> <version>6.6.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"> <parent> <artifactId>javalin-parent</artifactId> <groupId>io.javalin</groupId> <version>6.6.0</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>javalin-rendering</artifactId> <properties> <copy-build-resources.skip>false</copy-build-resources.skip> <jte.version>2.3.2</jte.version> </properties> <dependencies> <dependency> <groupId>io.javalin</groupId> <artifactId>javalin</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <!-- BEGIN TEST DEPENDENCIES --> <dependency> <groupId>io.javalin</groupId> <artifactId>javalin-testtools</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>${assertj.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${slf4j.version}</version> <scope>test</scope> </dependency> <!-- END TEST DEPENDENCIES --> <!-- BEGIN OPTIONAL TEMPLATE ENGINES --> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity-engine-core</artifactId> <version>2.4.1</version> <optional>true</optional> </dependency> <dependency> <groupId>org.freemarker</groupId> <artifactId>freemarker</artifactId> <version>2.3.34</version> <optional>true</optional> </dependency> <dependency> <groupId>org.thymeleaf</groupId> <artifactId>thymeleaf</artifactId> <version>3.1.3.RELEASE</version> <optional>true</optional> </dependency> <dependency> <groupId>com.github.spullara.mustache.java</groupId> <artifactId>compiler</artifactId> <version>0.9.14</version> <optional>true</optional> </dependency> <dependency> <groupId>io.pebbletemplates</groupId> <artifactId>pebble</artifactId> <version>3.1.6</version> <optional>true</optional> </dependency> <dependency> <groupId>gg.jte</groupId> <artifactId>jte</artifactId> <version>${jte.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>gg.jte</groupId> <artifactId>jte-kotlin</artifactId> <version>${jte.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>org.commonmark</groupId> <artifactId>commonmark</artifactId> <version>0.23.0</version> <optional>true</optional> </dependency> <!-- END OPTIONAL TEMPLATE ENGINES --> </dependencies> <build> <plugins> <plugin> <groupId>org.moditect</groupId> <artifactId>moditect-maven-plugin</artifactId> <executions> <execution> <id>add-module-infos</id> <phase>package</phase> <goals> <goal>add-module-info</goal> </goals> <configuration> <overwriteExistingFiles>true</overwriteExistingFiles> <module> <moduleInfoFile>./meta/module-info.java</moduleInfoFile> </module> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>