mirror of
https://github.com/JeffLi1993/springboot-learning-example.git
synced 2026-03-14 06:03:52 +08:00
65 lines
2.2 KiB
XML
Executable File
65 lines
2.2 KiB
XML
Executable File
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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>springboot</groupId>
|
|
<artifactId>springboot-freemarker</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<name>springboot-freemarker :: 整合 FreeMarker 案例</name>
|
|
|
|
<!-- Spring Boot 启动父依赖 -->
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>1.5.1.RELEASE</version>
|
|
</parent>
|
|
|
|
<properties>
|
|
<mybatis-spring-boot>1.2.0</mybatis-spring-boot>
|
|
<mysql-connector>5.1.39</mysql-connector>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<!-- Spring Boot Freemarker 依赖 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-freemarker</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Spring Boot Web 依赖 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Spring Boot Test 依赖 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!-- Spring Boot Mybatis 依赖 -->
|
|
<dependency>
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
<version>${mybatis-spring-boot}</version>
|
|
</dependency>
|
|
|
|
<!-- MySQL 连接驱动依赖 -->
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<version>${mysql-connector}</version>
|
|
</dependency>
|
|
|
|
<!-- Junit -->
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.12</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|