<?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>
|
|
<parent>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-parent</artifactId>
|
<version>2.0.3.RELEASE</version>
|
<relativePath/>
|
</parent>
|
|
<artifactId>classfinal-web</artifactId>
|
<packaging>jar</packaging>
|
<version>1.2.1</version>
|
|
<name>classfinal-web</name>
|
|
<properties>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<maven.compiler.source>1.8</maven.compiler.source>
|
<maven.compiler.target>1.8</maven.compiler.target>
|
<tomcat.version>8.5.51</tomcat.version>
|
</properties>
|
|
<dependencies>
|
<dependency>
|
<groupId>net.roseboy</groupId>
|
<artifactId>classfinal-core</artifactId>
|
<version>1.2.1</version>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-freemarker</artifactId>
|
</dependency>
|
|
</dependencies>
|
<build>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
<configuration>
|
<fork>true</fork>
|
</configuration>
|
</plugin>
|
</plugins>
|
</build>
|
|
</project>
|