|
|
<?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>com.data</groupId>
|
|
|
<artifactId>emqx</artifactId>
|
|
|
<version>4.6.2</version>
|
|
|
<packaging>jar</packaging>
|
|
|
<name>emqx_loader</name>
|
|
|
<description>装载机上传数据</description>
|
|
|
|
|
|
<parent>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
<version>2.2.13.RELEASE</version>
|
|
|
<relativePath/>
|
|
|
</parent>
|
|
|
|
|
|
<properties>
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
<java.version>1.8</java.version>
|
|
|
<maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
|
|
|
<shiro.version>1.7.1</shiro.version>
|
|
|
<thymeleaf.extras.shiro.version>2.0.0</thymeleaf.extras.shiro.version>
|
|
|
<pagehelper.spring.boot.starter.version>1.3.1</pagehelper.spring.boot.starter.version>
|
|
|
<fastjson.version>1.2.76</fastjson.version>
|
|
|
<druid.version>1.2.6</druid.version>
|
|
|
<commons.io.version>2.11.0</commons.io.version>
|
|
|
<commons.fileupload.version>1.4</commons.fileupload.version>
|
|
|
<bitwalker.version>1.21</bitwalker.version>
|
|
|
<velocity.version>1.7</velocity.version>
|
|
|
<kaptcha.version>2.3.2</kaptcha.version>
|
|
|
<swagger.version>3.0.0</swagger.version>
|
|
|
<poi.version>4.1.2</poi.version>
|
|
|
<poi-tl.version>1.10.0</poi-tl.version>
|
|
|
<oshi.version>5.8.0</oshi.version>
|
|
|
<jna.version>5.8.0</jna.version>
|
|
|
<lombok.version>1.18.24</lombok.version>
|
|
|
<mybatisplus.version>3.3.0</mybatisplus.version>
|
|
|
<hutool.all.version>5.4.0</hutool.all.version>
|
|
|
<sqljdbc4.version>6.4.0.jre8</sqljdbc4.version>
|
|
|
</properties>
|
|
|
<dependencies>
|
|
|
<!-- SpringBoot 核心包 -->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
|
</dependency>
|
|
|
<!-- SpringBoot Web容器 -->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
</dependency>
|
|
|
<!-- SpringBoot集成thymeleaf模板 -->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
|
</dependency>
|
|
|
<!-- spring-boot-devtools -->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
|
<optional>true</optional> <!-- 表示依赖不会传递 -->
|
|
|
</dependency>
|
|
|
<!-- Mysql驱动包 -->
|
|
|
<dependency>
|
|
|
<groupId>mysql</groupId>
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
</dependency>
|
|
|
<!-- pagehelper 分页插件 -->
|
|
|
<dependency>
|
|
|
<groupId>com.github.pagehelper</groupId>
|
|
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
|
<version>${pagehelper.spring.boot.starter.version}</version>
|
|
|
<exclusions>
|
|
|
<exclusion>
|
|
|
<artifactId>mybatis</artifactId>
|
|
|
<groupId>org.mybatis</groupId>
|
|
|
</exclusion>
|
|
|
<exclusion>
|
|
|
<artifactId>mybatis-spring</artifactId>
|
|
|
<groupId>org.mybatis</groupId>
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 阿里数据库连接池 -->
|
|
|
<!-- <dependency>
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
|
<version>${druid.version}</version>
|
|
|
</dependency>-->
|
|
|
<dependency>
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
<artifactId>dynamic-datasource-spring-boot-starter</artifactId>
|
|
|
<version>3.5.1</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 常用工具类 -->
|
|
|
<dependency>
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.eclipse.paho</groupId>
|
|
|
<artifactId>org.eclipse.paho.client.mqttv3</artifactId>
|
|
|
<version>1.2.5</version>
|
|
|
<scope>system</scope>
|
|
|
<systemPath>${project.basedir}/.mvn/wrapper/org.eclipse.paho.client.mqttv3-1.2.5.jar</systemPath>
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
<!--Lombok -->
|
|
|
<dependency>
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
<artifactId>lombok</artifactId>
|
|
|
<optional>true</optional>
|
|
|
</dependency>
|
|
|
<!-- 阿里JSON解析器 -->
|
|
|
<dependency>
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
<version>${fastjson.version}</version>
|
|
|
</dependency>
|
|
|
<!-- 定时任务 -->
|
|
|
<dependency>
|
|
|
<groupId>org.quartz-scheduler</groupId>
|
|
|
<artifactId>quartz</artifactId>
|
|
|
<exclusions>
|
|
|
<exclusion>
|
|
|
<groupId>com.mchange</groupId>
|
|
|
<artifactId>c3p0</artifactId>
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
<!-- mybatis-plus -->
|
|
|
<dependency>
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
<version>${mybatisplus.version}</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>log4j</groupId>
|
|
|
<artifactId>log4j</artifactId>
|
|
|
<version>1.2.17</version>
|
|
|
</dependency>
|
|
|
</dependencies>
|
|
|
|
|
|
<build>
|
|
|
<finalName>${project.artifactId}</finalName>
|
|
|
<plugins>
|
|
|
<plugin>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
<configuration>
|
|
|
<fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
<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>
|
|
|
</build>
|
|
|
<repositories>
|
|
|
<repository>
|
|
|
<id>public</id>
|
|
|
<name>aliyun nexus</name>
|
|
|
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
|
|
|
<releases>
|
|
|
<enabled>true</enabled>
|
|
|
</releases>
|
|
|
</repository>
|
|
|
</repositories>
|
|
|
|
|
|
<pluginRepositories>
|
|
|
<pluginRepository>
|
|
|
<id>public</id>
|
|
|
<name>aliyun nexus</name>
|
|
|
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
|
|
|
<releases>
|
|
|
<enabled>true</enabled>
|
|
|
</releases>
|
|
|
<snapshots>
|
|
|
<enabled>false</enabled>
|
|
|
</snapshots>
|
|
|
</pluginRepository>
|
|
|
</pluginRepositories>
|
|
|
|
|
|
</project>
|