64 lines
2.5 KiB
XML
64 lines
2.5 KiB
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
||
|
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>com.yovinchen</groupId>
|
||
|
<artifactId>train</artifactId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
|
||
|
<artifactId>common</artifactId>
|
||
|
|
||
|
<properties>
|
||
|
<maven.compiler.source>17</maven.compiler.source>
|
||
|
<maven.compiler.target>17</maven.compiler.target>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
</properties>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.cloud</groupId>
|
||
|
<artifactId>spring-cloud-starter</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-aop</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.alibaba</groupId>
|
||
|
<artifactId>fastjson</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>cn.hutool</groupId>
|
||
|
<artifactId>hutool-all</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- <!– 集成mybatis–>-->
|
||
|
<!-- <dependency>-->
|
||
|
<!-- <groupId>org.mybatis.spring.boot</groupId>-->
|
||
|
<!-- <artifactId>mybatis-spring-boot-starter</artifactId>-->
|
||
|
<!-- </dependency>-->
|
||
|
<!-- <!– 集成mysql连接 –>-->
|
||
|
<!-- <dependency>-->
|
||
|
<!-- <groupId>mysql</groupId>-->
|
||
|
<!-- <artifactId>mysql-connector-java</artifactId>-->
|
||
|
<!-- </dependency>-->
|
||
|
|
||
|
<!-- <dependency>-->
|
||
|
<!-- <groupId>org.springframework.boot</groupId>-->
|
||
|
<!-- <artifactId>spring-boot-starter-validation</artifactId>-->
|
||
|
<!-- </dependency>-->
|
||
|
|
||
|
<!-- <dependency>-->
|
||
|
<!-- <groupId>com.github.pagehelper</groupId>-->
|
||
|
<!-- <artifactId>pagehelper-spring-boot-starter</artifactId>-->
|
||
|
<!-- </dependency>-->
|
||
|
</dependencies>
|
||
|
</project>
|