mustache-templating
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.zscript.maven-templates</groupId> <artifactId>mustache-templating</artifactId> <version>1.0.0</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> <groupId>net.zscript.maven-templates</groupId> <artifactId>mustache-templating</artifactId> <version>1.0.0</version> <packaging>pom</packaging> <name>Mustache Templating Plugin Package</name> <description> A Maven Plugin for generating files and source-code using Mustache templates, with a pluggable adapter system for constructing the contexts to populate those templates. Developed for model-to-code generation in Zscript: https://github.com/susanw1/zscript </description> <url>https://github.com/susanw1/mustache-templating-maven-plugin</url> <inceptionYear>2023</inceptionYear> <organization> <name>Zscript Team</name> <url>http://zscript.net/</url> </organization> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <developers> <developer> <name>Susan Witts</name> <id>susanw1</id> <url>https://www.linkedin.com/in/susan-witts/</url> <timezone>Europe/London</timezone> <email>susanwitts1@gmail.com</email> <organization>Zscript Team</organization> </developer> <developer> <id>More-Wrong</id> <name>More-Wrong</name> <url>https://github.com/More-Wrong/</url> <timezone>Europe/London</timezone> <organization>Zscript Team</organization> </developer> </developers> <mailingLists> <mailingList> <name>Mustache Templating plugin</name> <subscribe>https://groups.google.com/g/zscript</subscribe> <unsubscribe>zscript+unsubscribe@googlegroups.com</unsubscribe> <post>zscript@googlegroups.com</post> <archive>https://groups.google.com/g/zscript</archive> </mailingList> </mailingLists> <scm> <url>https://github.com/susanw1/mustache-templating-maven-plugin</url> <connection>scm:git:https://github.com/susanw1/mustache-templating-maven-plugin.git</connection> <developerConnection>scm:git:https://github.com/susanw1/mustache-templating-maven-plugin.git</developerConnection> <tag>1.0.0</tag> </scm> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/susanw1/mustache-templating-maven-plugin/issues/</url> </issueManagement> <prerequisites> <maven>${version.maven}</maven> </prerequisites> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.source.version>8</java.source.version> <java.target.version>8</java.target.version> <version.mustache>0.9.14</version.mustache> <version.snakeyaml>2.3</version.snakeyaml> <version.junit>5.11.2</version.junit> <version.assertj>3.26.3</version.assertj> <version.jimfs>1.3.0</version.jimfs> <version.apachecommons>2.17.0</version.apachecommons> <version.maven>3.6.3</version.maven> <version.jacoco-maven-plugin>0.8.12</version.jacoco-maven-plugin> <version.maven-javadoc-plugin>3.10.1</version.maven-javadoc-plugin> <version.maven-source-plugin>3.3.1</version.maven-source-plugin> <version.maven-compiler-plugin>3.13.0</version.maven-compiler-plugin> <version.maven-surefire-plugin>3.5.1</version.maven-surefire-plugin> <version.maven-enforcer-plugin>3.5.0</version.maven-enforcer-plugin> <version.maven-gpg-plugin>3.2.7</version.maven-gpg-plugin> <version.maven-release-plugin>3.1.1</version.maven-release-plugin> <version.maven-nexus-staging-plugin>1.7.0</version.maven-nexus-staging-plugin> </properties> <modules> <module>mustache-templating-maven-plugin</module> <module>mustache-templating-context-loader</module> <module>mustache-templating-tests</module> <module>mustache-templating-test-contextloader</module> <module>mustache-templating-test-resources</module> </modules> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>${version.junit}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>${version.assertj}</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>${version.apachecommons}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.jimfs</groupId> <artifactId>jimfs</artifactId> <version>${version.jimfs}</version> <scope>test</scope> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>com.github.spullara.mustache.java</groupId> <artifactId>compiler</artifactId> <version>${version.mustache}</version> </dependency> <dependency> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> <version>${version.snakeyaml}</version> </dependency> </dependencies> </dependencyManagement> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${version.maven-compiler-plugin}</version> <configuration> <source>${java.source.version}</source> <target>${java.target.version}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${version.maven-surefire-plugin}</version> </plugin> <plugin> <groupId>com.diffplug.spotless</groupId> <artifactId>spotless-maven-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${version.jacoco-maven-plugin}</version> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>verify</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${version.maven-javadoc-plugin}</version> <configuration> <detectLinks /> <source>${java.source.version}</source> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${version.maven-source-plugin}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>${version.maven-enforcer-plugin}</version> <executions> <execution> <id>enforce-maven</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>${version.maven}</version> </requireMavenVersion> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${version.maven-gpg-plugin}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>${version.maven-release-plugin}</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <tagNameFormat>@{project.version}</tagNameFormat> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${version.maven-nexus-staging-plugin}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> <stagingProgressTimeoutMinutes>60</stagingProgressTimeoutMinutes> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> </plugin> </plugins> </build> </profile> </profiles> </project>