mybatis-freemarker
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.mybatis.scripting</groupId> <artifactId>mybatis-freemarker</artifactId> <version>1.2.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2015-2022 the original author or authors. 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 https://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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.mybatis</groupId> <artifactId>mybatis-parent</artifactId> <version>36</version> <relativePath /> </parent> <groupId>org.mybatis.scripting</groupId> <artifactId>mybatis-freemarker</artifactId> <version>1.2.4</version> <name>MyBatis FreeMarker</name> <description>FreeMarker support for MyBatis</description> <url>https://github.com/mybatis/freemarker-scripting</url> <inceptionYear>2015</inceptionYear> <contributors> <contributor> <name>Igor Kostromin</name> <email>elwood.su@gmail.com</email> </contributor> <contributor> <name>Eduardo Macarron</name> <email>eduardo.macarron@gmail.com</email> </contributor> <contributor> <name>Frank Martinez</name> <email>mnesarco@gmail.com</email> </contributor> </contributors> <scm> <url>https://github.com/mybatis/freemarker-scripting</url> <connection>scm:git:ssh://github.com/mybatis/freemarker-scripting.git</connection> <developerConnection>scm:git:ssh://git@github.com/mybatis/freemarker-scripting.git</developerConnection> <tag>mybatis-freemarker-1.2.4</tag> </scm> <issueManagement> <system>GitHub Issue Management</system> <url>https://github.com/mybatis/freemarker-scripting/issues</url> </issueManagement> <ciManagement> <system>GitHub Actions</system> <url>https://github.com/mybatis/freemarker-scripting/actions</url> </ciManagement> <distributionManagement> <site> <id>gh-pages</id> <name>Mybatis GitHub Pages</name> <url>git:ssh://git@github.com/mybatis/freemarker-scripting.git?gh-pages#</url> </site> </distributionManagement> <properties> <clirr.comparisonVersion>1.1.2</clirr.comparisonVersion> <module.name>org.mybatis.scripting.freemarker</module.name> <!-- Reproducible Builds --> <project.build.outputTimestamp>1670023377</project.build.outputTimestamp> </properties> <dependencies> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.5.11</version> </dependency> <dependency> <groupId>org.freemarker</groupId> <artifactId>freemarker</artifactId> <version>2.3.31</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-text</artifactId> <version>1.10.0</version> </dependency> <!-- TEST --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.9.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hsqldb</groupId> <artifactId>hsqldb</artifactId> <version>2.7.1</version> <scope>test</scope> </dependency> </dependencies> </project>