<?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.5.4</version>
|
<relativePath/> <!-- lookup parent from repository -->
|
</parent>
|
<groupId>com.sandu.ximon</groupId>
|
<artifactId>management</artifactId>
|
<version>0.0.1-SNAPSHOT</version>
|
<packaging>pom</packaging>
|
<name>management</name>
|
<description>Demo project for Spring Boot</description>
|
|
<modules>
|
<module>dao</module>
|
<module>sandu-common</module>
|
<module>ximon-admin</module>
|
</modules>
|
|
<properties>
|
<java.version>1.8</java.version>
|
<druid.version>1.2.4</druid.version>
|
<mysql-connector.version>8.0.23</mysql-connector.version>
|
<mybatis-plus.version>3.4.2</mybatis-plus.version>
|
<weixin-java.version>4.1.0</weixin-java.version>
|
</properties>
|
<dependencies>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-test</artifactId>
|
<scope>test</scope>
|
</dependency>
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
<optional>true</optional>
|
</dependency>
|
</dependencies>
|
|
<dependencyManagement>
|
<dependencies>
|
<dependency>
|
<groupId>com.sandu.ximon</groupId>
|
<artifactId>sandu-common</artifactId>
|
<version>0.0.1-SNAPSHOT</version>
|
</dependency>
|
<dependency>
|
<groupId>com.sandu.ximon</groupId>
|
<artifactId>dao</artifactId>
|
<version>0.0.1-SNAPSHOT</version>
|
</dependency>
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>druid-spring-boot-starter</artifactId>
|
<version>${druid.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>mysql</groupId>
|
<artifactId>mysql-connector-java</artifactId>
|
<version>${mysql-connector.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
<version>${mybatis-plus.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.github.binarywang</groupId>
|
<artifactId>weixin-java-miniapp</artifactId>
|
<version>${weixin-java.version}</version>
|
</dependency>
|
|
<!-- amqp 1.0 qpid client -->
|
<dependency>
|
<groupId>org.apache.qpid</groupId>
|
<artifactId>qpid-jms-client</artifactId>
|
<version>0.57.0</version>
|
</dependency>
|
<!-- util for base64-->
|
<dependency>
|
<groupId>commons-codec</groupId>
|
<artifactId>commons-codec</artifactId>
|
<version>1.10</version>
|
</dependency>
|
<dependency>
|
<groupId>com.aliyun</groupId>
|
<artifactId>aliyun-java-sdk-core</artifactId>
|
<version>4.5.6</version>
|
</dependency>
|
<dependency>
|
<groupId>com.aliyun</groupId>
|
<artifactId>aliyun-java-sdk-iot</artifactId>
|
<version>7.29.0</version>
|
</dependency>
|
</dependencies>
|
</dependencyManagement>
|
|
<build>
|
<plugins>
|
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
<version>3.8.1</version>
|
<configuration>
|
<!-- 一般而言,target与source是保持一致的,但是,有时候为了让程序能在其他版本的jdk中运行(对于低版本目标jdk,源代码中不能使用低版本jdk中不支持的语法),会存在target不同于source的情况 -->
|
<source>1.8</source> <!-- 源代码使用的JDK版本 -->
|
<target>1.8</target> <!-- 需要生成的目标class文件的编译版本 -->
|
<encoding>UTF-8</encoding><!-- 字符集编码,防止中文乱码 -->
|
</configuration>
|
</plugin>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-surefire-plugin</artifactId>
|
<configuration>
|
<skip>true</skip>
|
</configuration>
|
</plugin>
|
</plugins>
|
</build>
|
|
</project>
|