vertx-template-engines
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-template-engines</artifactId>
<version>5.1.5</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>io.vertx</groupId>
<artifactId>vertx-web-parent</artifactId>
<version>5.1.5</version>
</parent>
<name>vertx-template-engines</name>
<artifactId>vertx-template-engines</artifactId>
<packaging>pom</packaging>
<modules>
<module>vertx-web-templ-pug</module>
<module>vertx-web-templ-mvel</module>
<module>vertx-web-templ-handlebars</module>
<module>vertx-web-templ-thymeleaf</module>
<module>vertx-web-templ-freemarker</module>
<module>vertx-web-templ-pebble</module>
<module>vertx-web-templ-rocker</module>
<module>vertx-web-templ-httl</module>
<module>vertx-web-templ-rythm</module>
<module>vertx-web-templ-jte</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<executions>
<execution>
<id>default-compile</id>
<configuration>
<proc>none</proc>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
<shadedArtifactAttached>true</shadedArtifactAttached>
<shadedClassifierName>shaded</shadedClassifierName>
<artifactSet>
<excludes>
<exclude>io.vertx:vertx-core</exclude>
<exclude>io.vertx:vertx-web-common</exclude>
<exclude>io.netty:*</exclude>
<exclude>com.fasterxml.jackson.core:jackson-core:*</exclude>
<exclude>org.slf4j:*</exclude>
</excludes>
</artifactSet>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>