49 Star 59 Fork 65

布道师学习通/study-springboot

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 6.03 KB
一键复制 编辑 原始数据 按行查看 历史
tss 提交于 2024-09-25 20:02 . 新增web开发模块
<?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 https://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.3.8.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.cbitedu</groupId>
<artifactId>study-springboot</artifactId>
<version>1.0.0</version>
<name>study-springboot</name>
<description>study-springboot</description>
<packaging>pom</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<springboot.druid.starter.version>1.2.23</springboot.druid.starter.version>
</properties>
<!--多模块构建-->
<modules>
<!--maven标准工程项目-->
<module>study-springboot-chapter00</module>
<!--属性文件的使用案例-->
<module>study-springboot-chapter01</module>
<!--yml和yaml文件的使用案例-->
<!-- <module>study-springboot-yml</module>-->
<!--mybatis集成-->
<module>study-springboot-chapter02</module>
<!--mybatis plus集成-->
<module>study-springboot-chapter03</module>
<!--Spring jdbcTemplate集成-->
<module>study-springboot-chapter04</module>
<!--springboot日志框架-->
<module>study-springboot-chapter05</module>
<!--多数据源集成-->
<module>study-springboot-chapter06</module>
<!--springboot事务-->
<module>study-springboot-chapter07</module>
<!--springboot ehcache缓存-->
<module>study-springboot-chapter08</module>
<!--springboot Redis缓存-->
<module>study-springboot-chapter09</module>
<!--springboot Thymeleaf-->
<module>study-springboot-chapter10</module>
<!--springboot echarts-->
<module>study-springboot-chapter11</module>
<!--springboot echarts疫情项目-->
<module>study-springboot-chapter12</module>
<!--springboot upload文件上传案例-->
<!-- <module>study-springboot-chapter13</module>-->
<!-- &lt;!&ndash;springboot security安全框架&ndash;&gt;-->
<!-- <module>study-springboot-chapter14</module>-->
<!-- &lt;!&ndash;springboot apache shiro安全框架&ndash;&gt;-->
<!-- <module>study-springboot-chapter15</module>-->
<!-- &lt;!&ndash;springboot jwt 跨域解决方案&ndash;&gt;-->
<!-- <module>study-springboot-chapter16</module>-->
<!-- &lt;!&ndash;springboot Restful API&ndash;&gt;-->
<!-- <module>study-springboot-chapter17</module>-->
<!-- &lt;!&ndash;springboot swagger3 API&ndash;&gt;-->
<!-- <module>study-springboot-chapter18</module>-->
<!-- &lt;!&ndash;springboot Restful 安全解决方案&ndash;&gt;-->
<!-- <module>study-springboot-chapter19</module>-->
<!-- &lt;!&ndash;springboot task 任务调度&ndash;&gt;-->
<!-- <module>study-springboot-chapter21</module>-->
</modules>
<dependencies>
<!-- 实现对数据库连接池的自动化配置 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<!--导入配置文件处理器,以后编写配置就有提示了-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<fork>true</fork>
<addResources>true</addResources>
</configuration>
</plugin>
</plugins>
</build>
<!-- 配置JDK版本 -->
<profiles>
<profile>
<id>jdk18</id>
<activation>
<activeByDefault>true</activeByDefault>
<jdk>1.8</jdk>
</activation>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
</properties>
</profile>
</profiles>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/ossbar/study-springboot.git
git@gitee.com:ossbar/study-springboot.git
ossbar
study-springboot
study-springboot
master

搜索帮助