You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
138 lines
4.8 KiB
XML
138 lines
4.8 KiB
XML
<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>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.7.14</version>
|
|
<relativePath/>
|
|
</parent>
|
|
<groupId>com.iaas</groupId>
|
|
<artifactId>car-wx</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
<modules>
|
|
<module>car-wx-core</module>
|
|
<module>car-wx-common</module>
|
|
<module>car-wx-dao</module>
|
|
<module>car-wx-biz</module>
|
|
|
|
</modules>
|
|
<packaging>pom</packaging>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
<java.version>11</java.version>
|
|
<maven.compiler.source>11</maven.compiler.source>
|
|
<maven.compiler.target>11</maven.compiler.target>
|
|
<spring.boot.version>2.7.14</spring.boot.version>
|
|
<mysql.version>8.0.12</mysql.version>
|
|
<hutool.version>5.0.0</hutool.version>
|
|
<guava.version>28.1-jre</guava.version>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<hutool.version>5.8.0</hutool.version>
|
|
<mybatis-plus.version>3.5.2</mybatis-plus.version>
|
|
<mysql.connector.version>8.0.29</mysql.connector.version>
|
|
<fastjson.version>1.2.83</fastjson.version>
|
|
|
|
<swagger.version>3.0.0</swagger.version>
|
|
<spring-boot-admin.version>2.6.3</spring-boot-admin.version>
|
|
|
|
|
|
<maven.test.skip>true</maven.test.skip>
|
|
</properties>
|
|
|
|
<name>car-wx</name>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-dependencies</artifactId>
|
|
<version>${spring.boot.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-all</artifactId>
|
|
<version>${hutool.version}</version>
|
|
</dependency>
|
|
<!--mybatis plus extension,包含了mybatis plus core-->
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-extension</artifactId>
|
|
<version>${mybatis-plus.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.iaas</groupId>
|
|
<artifactId>car-wx-core</artifactId>
|
|
<version>${car.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.iaas</groupId>
|
|
<artifactId>car-wx-dao</artifactId>
|
|
<version>${car.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.iaas</groupId>
|
|
<artifactId>car-wx-common</artifactId>
|
|
<version>${car.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>dev</id>
|
|
<properties>
|
|
<!-- 环境标识,需要与配置文件的名称相对应 -->
|
|
<profiles.active>dev</profiles.active>
|
|
<car.version>1.0.0-SNAPSHOT</car.version>
|
|
</properties>
|
|
<!-- 默认环境 -->
|
|
<activation>
|
|
<activeByDefault>true</activeByDefault>
|
|
</activation>
|
|
</profile>
|
|
<profile>
|
|
<id>test</id>
|
|
<properties>
|
|
<profiles.active>test</profiles.active>
|
|
<car.version>1.0.0-SNAPSHOT</car.version>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>prod</id>
|
|
<properties>
|
|
<profiles.active>prod</profiles.active>
|
|
<car.version>1.0.0-SNAPSHOT</car.version>
|
|
</properties>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<version>${spring.boot.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
<plugins>
|
|
</plugins>
|
|
</build>
|
|
|
|
|
|
</project> |