<?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>com.sandu.ximon</groupId>
|
<artifactId>management</artifactId>
|
<version>0.0.1-SNAPSHOT</version>
|
</parent>
|
<artifactId>ximon-admin</artifactId>
|
<version>0.0.1-SNAPSHOT</version>
|
<name>ximon-admin</name>
|
<description>希梦管理后台接口</description>
|
<properties>
|
<java.version>1.8</java.version>
|
</properties>
|
<dependencies>
|
<dependency>
|
<groupId>com.sandu.ximon</groupId>
|
<artifactId>dao</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.sandu.ximon</groupId>
|
<artifactId>sandu-common</artifactId>
|
</dependency>
|
<!--阿里云物联网-->
|
<dependency>
|
<groupId>org.apache.qpid</groupId>
|
<artifactId>qpid-jms-client</artifactId>
|
</dependency>
|
<!-- util for base64-->
|
<dependency>
|
<groupId>commons-codec</groupId>
|
<artifactId>commons-codec</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.aliyun</groupId>
|
<artifactId>aliyun-java-sdk-core</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.aliyun</groupId>
|
<artifactId>aliyun-java-sdk-iot</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>junit</groupId>
|
<artifactId>junit</artifactId>
|
<scope>test</scope>
|
</dependency>
|
|
<dependency>
|
<groupId>com.aliyun.oss</groupId>
|
<artifactId>aliyun-sdk-oss</artifactId>
|
<version>3.13.1</version>
|
</dependency>
|
<dependency>
|
<groupId>com.alipay.sdk</groupId>
|
<artifactId>alipay-sdk-java</artifactId>
|
<version>4.17.9.ALL</version>
|
</dependency>
|
<dependency>
|
<groupId>cn.dreampie</groupId>
|
<artifactId>jfinal-utils</artifactId>
|
<version>0.2</version>
|
</dependency>
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>easyexcel</artifactId>
|
<version>2.2.10</version>
|
</dependency>
|
<!--阿里云物联网 -->
|
<!--添加minio的依赖-->
|
<dependency>
|
<groupId>io.minio</groupId>
|
<artifactId>minio</artifactId>
|
<version>7.1.0</version>
|
<exclusions>
|
<exclusion>
|
<groupId>com.google.guava</groupId>
|
<artifactId>guava</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<dependency>
|
<groupId>net.minidev</groupId>
|
<artifactId>json-smart</artifactId>
|
</dependency>
|
<!-- https://mvnrepository.com/artifact/eu.bitwalker/UserAgentUtils -->
|
<dependency>
|
<groupId>eu.bitwalker</groupId>
|
<artifactId>UserAgentUtils</artifactId>
|
<version>1.21</version>
|
</dependency>
|
<dependency>
|
<groupId>org.assertj</groupId>
|
<artifactId>assertj-core</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.github.binarywang</groupId>
|
<artifactId>weixin-java-miniapp</artifactId>
|
<version>4.1.0</version>
|
<exclusions>
|
<exclusion>
|
<groupId>com.google.guava</groupId>
|
<artifactId>guava</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
</dependencies>
|
|
|
<build>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
<configuration>
|
<executable>true</executable>
|
<includeSystemScope>true</includeSystemScope>
|
</configuration>
|
</plugin>
|
</plugins>
|
</build>
|
|
</project>
|