operaton-template-engines-freemarker
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.operaton.template-engines</groupId> <artifactId>operaton-template-engines-freemarker</artifactId> <version>1.0.0-beta-4</version> </dependency>
<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.operaton.bpm</groupId> <artifactId>operaton-parent</artifactId> <relativePath>../parent</relativePath> <version>1.0.0-beta-4</version> </parent> <groupId>org.operaton.template-engines</groupId> <artifactId>operaton-template-engines-freemarker</artifactId> <version>1.0.0-beta-4</version> <name>Operaton - Template Engine - JSR223 Freemarker</name> <properties> <license.includeTransitiveDependencies>false</license.includeTransitiveDependencies> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.operaton.bpm</groupId> <artifactId>operaton-core-internal-dependencies</artifactId> <version>${project.version}</version> <scope>import</scope> <type>pom</type> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.freemarker</groupId> <artifactId>freemarker</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <redirectTestOutputToFile>true</redirectTestOutputToFile> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <configuration> <instructions> <Export-Package>org.operaton.templateengines*</Export-Package> </instructions> </configuration> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <configuration> <acceptPomPackaging>true</acceptPomPackaging> <excludedScopes>test</excludedScopes> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>license-header-check</id> <build> <plugins> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> </plugin> </plugins> </build> </profile> </profiles> <scm> <url>https://github.com/operaton/operaton</url> <connection>scm:git:git@github.com:operaton/operaton.git</connection> <developerConnection>scm:git:git@github.com:operaton/operaton.git</developerConnection> <tag>HEAD</tag> </scm> <description>${project.name}</description> </project>