freshmarker
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.schegge</groupId> <artifactId>freshmarker</artifactId> <version>1.6.6</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>de.schegge</groupId> <artifactId>freshmarker</artifactId> <version>1.6.6</version> <name>FreshMarker</name> <description>A simple, small but powerful template engine based loosely on the FreeMarker syntax. FreshMarker is implemented in Java 21 and supports the `java.time` API and Records.</description> <url>https://gitlab.com/schegge/freshmarker.git</url> <organization> <name>freshmarker.org</name> <url>http://freshmarker.org</url> </organization> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Jens Kaiser</name> <email>schegge42@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:https://gitlab.com/schegge/freshmarker.git</connection> <developerConnection>scm:git:https://gitlab.com/schegge/freshmarker.git</developerConnection> <url>https://gitlab.com/schegge/freshmarker.git</url> </scm> <distributionManagement> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.13</version> <scope>compile</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.5.6</version> <scope>provided</scope> </dependency> <dependency> <groupId>de.schegge</groupId> <artifactId>stream-collector-utilities</artifactId> <version>0.1.5</version> <scope>compile</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> </plugin> </plugins> </build> </project>