freemarker-java8
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>no.api.freemarker</groupId> <artifactId>freemarker-java8</artifactId> <version>3.0.3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright (c) 2019 Jakob Vad Nielsen ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. --> <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> <packaging>jar</packaging> <groupId>no.api.freemarker</groupId> <artifactId>freemarker-java8</artifactId> <version>3.0.3</version> <name>freemarker-java8</name> <description>A library that extends FreeMarker with support for the Java Date/Time API</description> <url>https://github.com/lazee/freemarker-java-8</url> <developers> <developer> <name>Jakob Vad Nielsen</name> <email>jakobvadnielsen@gmail.com</email> <roles> <role>Lead developer</role> </roles> </developer> <developer> <name>Michael Krog</name> <url>https://github.com/michaelkrog</url> <roles> <role>Contributor</role> </roles> </developer> <developer> <name>Tobias Schneider</name> <url>https://github.com/derTobsch</url> <roles> <role>Contributor</role> </roles> </developer> <developer> <name>Tifoha</name> <url>https://github.com/tifoha</url> <roles> <role>Contributor</role> </roles> </developer> <developer> <name>Maarten Mulders</name> <url>https://github.com/mthmulders</url> <roles> <role>Contributor</role> </roles> </developer> <developer> <name>Desson Ariawan</name> <roles> <role>Contributor</role> </roles> </developer> <developer> <name>hercsoft</name> <url>https://github.com/hercsoft</url> <roles> <role>Contributor</role> </roles> </developer> </developers> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <connection>scm:git:ssh://git@github.com/lazee/freemarker-java-8.git</connection> <developerConnection>scm:git:ssh://git@github.com/lazee/freemarker-java-8.git</developerConnection> <url>https://github.com/lazee/freemarker-java-8</url> <tag>freemarker-java8-3.0.3</tag> </scm> <properties> <java.version>1.8</java.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <freemarker.version>2.3.34</freemarker.version> <freemarker.java8.module.name>freemarker.java8</freemarker.java8.module.name> <cucumber.version>7.21.1</cucumber.version> <junit.version>5.11.4</junit.version> <maven.compiler.source>${java.version}</maven.compiler.source> <maven.compiler.target>${java.version}</maven.compiler.target> </properties> <issueManagement> <system>GitHub</system> <url>https://github.com/lazee/freemarker-java-8/issues</url> </issueManagement> <prerequisites> <maven>3.9.8</maven> </prerequisites> <dependencies> <dependency> <groupId>org.freemarker</groupId> <artifactId>freemarker</artifactId> <version>${freemarker.version}</version> </dependency> <dependency> <groupId>io.cucumber</groupId> <artifactId>cucumber-java8</artifactId> <version>${cucumber.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.cucumber</groupId> <artifactId>cucumber-java</artifactId> <version>${cucumber.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.cucumber</groupId> <artifactId>cucumber-junit</artifactId> <version>${cucumber.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> </dependencies> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <gpgArguments> <argument>--pinentry-mode</argument> <argument>loopback</argument> </gpgArguments> </configuration> </plugin> </plugins> </build> </profile> </profiles> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>3.1.1</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>true</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</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-javadoc-plugin</artifactId> <version>3.11.2</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.4.2</version> <configuration> <archive> <manifestEntries> <Automatic-Module-Name>${freemarker.java8.module.name}</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> </plugins> </pluginManagement> </build> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </project>