1 Star 8 Fork 8

flyos/spring-boot-study

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 3.40 KB
一键复制 编辑 原始数据 按行查看 历史
<?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>com.tfos.study</groupId>
<artifactId>spring-boot-study</artifactId>
<version>1.0-SNAPSHOT</version>
<modules>
<module>spring-boot-study-create-web</module>
<module>spring-boot-study-test-case</module>
<module>spring-boot-study-banner</module>
<module>spring-boot-study-port-path</module>
<module>spring-boot-study-logback</module>
<module>spring-boot-study-devtools</module>
<module>spring-boot-study-thymeleaf</module>
<module>spring-boot-study-static</module>
<module>spring-boot-study-jsp</module>
<module>spring-boot-study-multipart-file</module>
<module>spring-boot-study-ssm-xml</module>
<module>spring-boot-study-ssm-annotation</module>
<module>spring-boot-study-mvc-converter</module>
<module>spring-boot-study-mvc-serializers</module>
<module>spring-boot-study-mvc-static</module>
<module>spring-boot-study-mvc-favicon</module>
<module>spring-boot-study-mvc-url</module>
<module>spring-boot-study-mvc-content-negotiation</module>
<module>spring-boot-study-mvc-content-negotiating-view-resolver</module>
<module>spring-boot-study-mvc-init-binder</module>
<module>spring-boot-study-mvc-web-data-binder</module>
<module>spring-boot-study-mvc-web-binding-initializer</module>
<module>spring-boot-study-mvc-configurable-web-binding-initializer</module>
<module>spring-boot-study-mvc-cors</module>
</modules>
<packaging>pom</packaging>
<name>spring-boot-study</name>
<!-- FIXME change it to the project's website -->
<url>http://www.tfos.com</url>
<description>【TF(腾飞)开源】SpringBoot2.x从入门到精通</description>
<distributionManagement>
<site>
<id>website</id>
<url>scp://webhost.company.com/www/website</url>
</site>
</distributionManagement>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.5.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
<maven-compiler-plugin>3.6.2</maven-compiler-plugin>
<maven-source-plugin.version>2.1</maven-source-plugin.version>
<java.version>1.8</java.version>
<junit.version>4.12</junit.version>
<hutool.version>5.6.2</hutool.version>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>${hutool.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!--简化bean的代码-->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
</dependencies>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/takeoff/spring-boot-study.git
git@gitee.com:takeoff/spring-boot-study.git
takeoff
spring-boot-study
spring-boot-study
master

搜索帮助