|
@@ -0,0 +1,212 @@
|
|
|
+<?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>edu.travel</groupId>
|
|
|
+ <artifactId>babyApplication</artifactId>
|
|
|
+ <version>1.0-SNAPSHOT</version>
|
|
|
+ <packaging>pom</packaging>
|
|
|
+ <modules>
|
|
|
+ <module>babyApplication-common</module>
|
|
|
+ <module>babyApplication-service</module>
|
|
|
+ <module>babyApplication-web</module>
|
|
|
+ <module>babyApplication-dao</module>
|
|
|
+ <module>babyApplication-model</module>
|
|
|
+ </modules>
|
|
|
+
|
|
|
+ <parent>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-parent</artifactId>
|
|
|
+ <version>2.3.12.RELEASE</version>
|
|
|
+ </parent>
|
|
|
+
|
|
|
+ <properties>
|
|
|
+ <maven.compiler.source>8</maven.compiler.source>
|
|
|
+ <maven.compiler.target>8</maven.compiler.target>
|
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
+ <spring.cloud.version>Hoxton.SR12</spring.cloud.version>
|
|
|
+ <mysql.version>8.0.22</mysql.version>
|
|
|
+ <druid.version>1.2.16</druid.version>
|
|
|
+ <mybatis.plus.verion>3.4.0</mybatis.plus.verion>
|
|
|
+ <fastjson.version>1.2.83</fastjson.version>
|
|
|
+ <hutool.version>5.8.23</hutool.version>
|
|
|
+ <alibaba.version>2.2.10-RC1</alibaba.version>
|
|
|
+ <mybaits.plus.annotation.version>3.4.0</mybaits.plus.annotation.version>
|
|
|
+ <bootstrap.version>4.1.3</bootstrap.version>
|
|
|
+ <pg.version>42.6.0</pg.version>
|
|
|
+ <sharding.sphere.version>5.1.0</sharding.sphere.version>
|
|
|
+ <obs.version>3.20.6.1</obs.version>
|
|
|
+ <oss.version>3.10.2</oss.version>
|
|
|
+ <cos.version>5.6.54</cos.version>
|
|
|
+ <minio.version>7.0.2</minio.version>
|
|
|
+ <elasticsearch.version>7.10.0</elasticsearch.version>
|
|
|
+ <debezium.version>1.9.4.final</debezium.version>
|
|
|
+ <beanutils.version>1.9.4</beanutils.version>
|
|
|
+ <modelmapper.version>3.2.0</modelmapper.version>
|
|
|
+ <excel.version>3.3.2</excel.version>
|
|
|
+ </properties>
|
|
|
+
|
|
|
+ <dependencyManagement>
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>easyexcel</artifactId>
|
|
|
+ <version>${excel.version}</version> <!-- 检查最新版本 -->
|
|
|
+ </dependency>
|
|
|
+ <!-- 对象转换工具-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.modelmapper</groupId>
|
|
|
+ <artifactId>modelmapper</artifactId>
|
|
|
+ <version>${modelmapper.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>commons-beanutils</groupId>
|
|
|
+ <artifactId>commons-beanutils</artifactId>
|
|
|
+ <version>${beanutils.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.debezium</groupId>
|
|
|
+ <artifactId>debezium-api</artifactId>
|
|
|
+ <version>${debezium.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.debezium</groupId>
|
|
|
+ <artifactId>debezium-embedded</artifactId>
|
|
|
+ <version>${debezium.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.debezium</groupId>
|
|
|
+ <artifactId>debezium-connector-postgres</artifactId>
|
|
|
+ <version>${debezium.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <!--引入es-high-level-client相关依赖 start-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.elasticsearch</groupId>
|
|
|
+ <artifactId>elasticsearch</artifactId>
|
|
|
+ <version>${elasticsearch.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.elasticsearch.client</groupId>
|
|
|
+ <artifactId>elasticsearch-rest-client</artifactId>
|
|
|
+ <version>${elasticsearch.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.elasticsearch.client</groupId>
|
|
|
+ <artifactId>elasticsearch-rest-high-level-client</artifactId>
|
|
|
+ <version>${elasticsearch.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <!--引入es-high-level-client相关依赖 end-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.minio</groupId>
|
|
|
+ <artifactId>minio</artifactId>
|
|
|
+ <version>${minio.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.aliyun.oss</groupId>
|
|
|
+ <artifactId>aliyun-sdk-oss</artifactId>
|
|
|
+ <version>${oss.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.qcloud</groupId>
|
|
|
+ <artifactId>cos_api</artifactId>
|
|
|
+ <version>${cos.version}</version>
|
|
|
+ <scope>provided</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.huaweicloud</groupId>
|
|
|
+ <artifactId>esdk-obs-java</artifactId>
|
|
|
+ <version>${obs.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.cloud</groupId>
|
|
|
+ <artifactId>spring-cloud-starter-bootstrap</artifactId>
|
|
|
+ <version>${bootstrap.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba.cloud</groupId>
|
|
|
+ <artifactId>spring-cloud-alibaba-dependencies</artifactId>
|
|
|
+ <version>${alibaba.version}</version>
|
|
|
+ <type>pom</type>
|
|
|
+ <scope>import</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.cloud</groupId>
|
|
|
+ <artifactId>spring-cloud-dependencies</artifactId>
|
|
|
+ <version>${spring.cloud.version}</version> <!-- 或者使用具体的子版本 -->
|
|
|
+ <type>pom</type>
|
|
|
+ <scope>import</scope>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>mysql</groupId>
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
+ <version>${mysql.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>druid-spring-boot-starter</artifactId>
|
|
|
+ <version>${druid.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
+ <artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
+ <version>${mybatis.plus.verion}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
+ <artifactId>mybatis-plus-core</artifactId>
|
|
|
+ <version>${mybatis.plus.verion}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
+ <artifactId>mybatis-plus-extension</artifactId>
|
|
|
+ <version>${mybatis.plus.verion}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>fastjson</artifactId>
|
|
|
+ <version>${fastjson.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>cn.hutool</groupId>
|
|
|
+ <artifactId>hutool-all</artifactId>
|
|
|
+ <version>${hutool.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
+ <artifactId>mybatis-plus-annotation</artifactId>
|
|
|
+ <version>${mybaits.plus.annotation.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.postgresql</groupId>
|
|
|
+ <artifactId>postgresql</artifactId>
|
|
|
+ <version>${pg.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ </dependencies>
|
|
|
+
|
|
|
+ </dependencyManagement>
|
|
|
+
|
|
|
+ <build>
|
|
|
+ <pluginManagement> <!-- 使用 pluginManagement 确保子模块继承插件配置 -->
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
+ <version>3.8.1</version>
|
|
|
+ <configuration>
|
|
|
+ <source>1.8</source>
|
|
|
+ <target>1.8</target>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </pluginManagement>
|
|
|
+ </build>
|
|
|
+
|
|
|
+</project>
|