|
@@ -2,185 +2,203 @@
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
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">
|
|
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>
|
|
<parent>
|
|
- <artifactId>huimv-env-platform</artifactId>
|
|
|
|
- <groupId>com.huimv</groupId>
|
|
|
|
- <version>1.0-SNAPSHOT</version>
|
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
+ <version>2.6.2</version>
|
|
</parent>
|
|
</parent>
|
|
- <modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<groupId>com.huimv</groupId>
|
|
<groupId>com.huimv</groupId>
|
|
- <artifactId>huimv-env-produce</artifactId>
|
|
|
|
- <version>0.0.1-SNAPSHOT</version>
|
|
|
|
-
|
|
|
|
- <dependencies>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
- <artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
- </dependency>
|
|
|
|
- <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>
|
|
|
|
|
|
+ <artifactId>huimv-env-platform</artifactId>
|
|
|
|
+ <packaging>pom</packaging>
|
|
|
|
+ <version>1.0-SNAPSHOT</version>
|
|
|
|
+ <modules>
|
|
|
|
+ <module>huimv-env-common</module>
|
|
|
|
+ <module>huimv-env-input</module>
|
|
|
|
+ <module>huimv-env-manage</module>
|
|
|
|
+ <module>huimv-env-device</module>
|
|
|
|
+ <module>huimv-env-lamp</module>
|
|
|
|
+ <module>huimv-env-produce</module>
|
|
|
|
+ </modules>
|
|
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>cn.dustlight.captcha</groupId>
|
|
|
|
- <artifactId>captcha-core</artifactId>
|
|
|
|
- </dependency>
|
|
|
|
|
|
+ <properties>
|
|
|
|
+ <java.version>1.8</java.version>
|
|
|
|
+ <maven.compile>1.8</maven.compile>
|
|
|
|
+ <druid.version>1.2.4</druid.version>
|
|
|
|
+ <mysql.version>6.0.6</mysql.version>
|
|
|
|
+ <junit.version>4.13.2</junit.version>
|
|
|
|
+ <hutool.version>5.8.1</hutool.version>
|
|
|
|
+ <velocity.version>2.0</velocity.version>
|
|
|
|
+ <lombok.version>1.16.18</lombok.version>
|
|
|
|
+ <netty.version>4.1.45.Final</netty.version>
|
|
|
|
+ <fastjson.version>1.2.28</fastjson.version>
|
|
|
|
+ <httpClient.version>4.5.5</httpClient.version>
|
|
|
|
+ <servletApi.version>3.1.0</servletApi.version>
|
|
|
|
+ <freemarker.version>2.3.31</freemarker.version>
|
|
|
|
+ <commonsLang3.version>3.7</commonsLang3.version>
|
|
|
|
+ <mybatisPlus.version>3.4.3.4</mybatisPlus.version>
|
|
|
|
+ <huimvCommon.version>0.0.6-SNAPSHOT</huimvCommon.version>
|
|
|
|
+ <huimvEnvCommon.version>0.0.1-SNAPSHOT</huimvEnvCommon.version>
|
|
|
|
+ <junitPlatformCommons.version>1.8.2</junitPlatformCommons.version>
|
|
|
|
+ <mybatisPlusGenerator.version>3.3.2</mybatisPlusGenerator.version>
|
|
|
|
+ <mybatisPlusExtension.version>3.5.2</mybatisPlusExtension.version>
|
|
|
|
+ <captcha.version>0.0.6</captcha.version>
|
|
|
|
+ <captcha.reids.version>0.0.6</captcha.reids.version>
|
|
|
|
+ <net.sf.json-lib.version>2.2.3</net.sf.json-lib.version>
|
|
|
|
+ <com.belerweb.version>2.5.1</com.belerweb.version>
|
|
|
|
+ <io.jsonwebtoken.version>0.9.1</io.jsonwebtoken.version>
|
|
|
|
+ <com.auth0.version>3.3.0</com.auth0.version>
|
|
|
|
+ </properties>
|
|
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>commons-lang</groupId>
|
|
|
|
- <artifactId>commons-lang</artifactId>
|
|
|
|
- <version>2.6</version>
|
|
|
|
- <scope>compile</scope>
|
|
|
|
- </dependency>
|
|
|
|
|
|
+ <dependencyManagement>
|
|
|
|
+ <dependencies>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>io.jsonwebtoken</groupId>
|
|
|
|
+ <artifactId>jjwt</artifactId>
|
|
|
|
+ <version>${io.jsonwebtoken.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.auth0</groupId>
|
|
|
|
+ <artifactId>java-jwt</artifactId>
|
|
|
|
+ <version>${com.auth0.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>cn.dustlight.captcha</groupId>
|
|
|
|
+ <artifactId>captcha-core</artifactId>
|
|
|
|
+ <version>${captcha.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>cn.dustlight.captcha</groupId>
|
|
|
|
+ <artifactId>redis-store</artifactId>
|
|
|
|
+ <version>${captcha.reids.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>cn.dustlight.captcha</groupId>
|
|
|
|
- <artifactId>redis-store</artifactId>
|
|
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>net.sf.json-lib</groupId>
|
|
|
|
+ <artifactId>json-lib</artifactId>
|
|
|
|
+ <version>${net.sf.json-lib.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.belerweb</groupId>
|
|
|
|
+ <artifactId>pinyin4j</artifactId>
|
|
|
|
+ <version>${com.belerweb.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>net.sf.json-lib</groupId>
|
|
|
|
- <artifactId>json-lib</artifactId>
|
|
|
|
- <version>2.2.3</version>
|
|
|
|
- <classifier>jdk15</classifier>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>com.belerweb</groupId>
|
|
|
|
- <artifactId>pinyin4j</artifactId>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>io.jsonwebtoken</groupId>
|
|
|
|
- <artifactId>jjwt</artifactId>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>com.auth0</groupId>
|
|
|
|
- <artifactId>java-jwt</artifactId>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>com.alibaba</groupId>
|
|
|
|
- <artifactId>fastjson</artifactId>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>cn.hutool</groupId>
|
|
|
|
- <artifactId>hutool-all</artifactId>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <!-- 排除Tomcat容器 -->
|
|
|
|
- <!-- <dependency>
|
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
- <artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
- <!– 移除掉默认支持的 Tomcat –>
|
|
|
|
- <exclusions>
|
|
|
|
- <exclusion>
|
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
- <artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
|
- </exclusion>
|
|
|
|
- </exclusions>
|
|
|
|
- </dependency>-->
|
|
|
|
- <!-- 添加 Undertow 容器 -->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
- <artifactId>spring-boot-starter-undertow</artifactId>
|
|
|
|
- </dependency>
|
|
|
|
- <!-- JPA -->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
- <artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
|
|
- </dependency>
|
|
|
|
- <!-- mysql -->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>mysql</groupId>
|
|
|
|
- <artifactId>mysql-connector-java</artifactId>
|
|
|
|
- <version>6.0.6</version>
|
|
|
|
- </dependency>
|
|
|
|
- <!--Mybatis-Plus生成器依赖-->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>com.baomidou</groupId>
|
|
|
|
- <artifactId>mybatis-plus-generator</artifactId>
|
|
|
|
- </dependency>
|
|
|
|
- <!--freemarker 模板引擎(没有用原生的模板引擎)-->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.freemarker</groupId>
|
|
|
|
- <artifactId>freemarker</artifactId>
|
|
|
|
- </dependency>
|
|
|
|
- <!--mybits-plus-->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>com.baomidou</groupId>
|
|
|
|
- <artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
|
- </dependency>
|
|
|
|
- <!-- mybatis-plus-extension -->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>com.baomidou</groupId>
|
|
|
|
- <artifactId>mybatis-plus-extension</artifactId>
|
|
|
|
- </dependency>
|
|
|
|
- <!-- 连接池 -->
|
|
|
|
- <dependency>
|
|
|
|
- <!--自动配置-->
|
|
|
|
- <groupId>com.alibaba</groupId>
|
|
|
|
- <artifactId>druid-spring-boot-starter</artifactId>
|
|
|
|
- </dependency>
|
|
|
|
- <!-- velocity -->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.apache.velocity</groupId>
|
|
|
|
- <artifactId>velocity-engine-core</artifactId>
|
|
|
|
- </dependency>
|
|
|
|
- <!-- freemarker -->
|
|
|
|
- <!-- <dependency>-->
|
|
|
|
- <!-- <groupId>org.springframework.boot</groupId>-->
|
|
|
|
- <!-- <artifactId>spring-boot-starter-freemarker</artifactId>-->
|
|
|
|
- <!-- </dependency>-->
|
|
|
|
- <!-- junit -->
|
|
|
|
- <!-- <dependency>-->
|
|
|
|
- <!-- <groupId>org.junit.platform</groupId>-->
|
|
|
|
- <!-- <artifactId>junit-platform-commons</artifactId>-->
|
|
|
|
- <!-- </dependency>-->
|
|
|
|
- <!-- junit -->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>junit</groupId>
|
|
|
|
- <artifactId>junit</artifactId>
|
|
|
|
- </dependency>
|
|
|
|
- <!--rabbitmq-->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
- <artifactId>spring-boot-starter-amqp</artifactId>
|
|
|
|
- </dependency>
|
|
|
|
- <!-- 一方包统一版本管理 -->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>com.huimv</groupId>
|
|
|
|
- <artifactId>huimv-env-common</artifactId>
|
|
|
|
- </dependency>
|
|
|
|
- </dependencies>
|
|
|
|
-
|
|
|
|
- <build>
|
|
|
|
- <plugins>
|
|
|
|
- <plugin>
|
|
|
|
|
|
+ <!-- fastjson -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
|
+ <artifactId>fastjson</artifactId>
|
|
|
|
+ <version>${fastjson.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!-- mysql -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>mysql</groupId>
|
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
|
+ <version>${mysql.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!--hutool-->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>cn.hutool</groupId>
|
|
|
|
+ <artifactId>hutool-all</artifactId>
|
|
|
|
+ <version>${hutool.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.apache.httpcomponents</groupId>
|
|
|
|
+ <artifactId>httpclient</artifactId>
|
|
|
|
+ <version>${httpClient.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>junit</groupId>
|
|
|
|
+ <artifactId>junit</artifactId>
|
|
|
|
+ <scope>test</scope>
|
|
|
|
+ <version>${junit.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!-- lombok -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.projectlombok</groupId>
|
|
|
|
+ <artifactId>lombok</artifactId>
|
|
|
|
+ <version>${lombok.version}</version>
|
|
|
|
+ <scope>compile</scope>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.apache.commons</groupId>
|
|
|
|
+ <artifactId>commons-lang3</artifactId>
|
|
|
|
+ <version>${commonsLang3.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>javax.servlet</groupId>
|
|
|
|
+ <artifactId>javax.servlet-api</artifactId>
|
|
|
|
+ <version>${servletApi.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!--Mybatis-Plus生成器依赖-->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
|
+ <artifactId>mybatis-plus-generator</artifactId>
|
|
|
|
+ <version>${mybatisPlusGenerator.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!--freemarker 模板引擎(没有用原生的模板引擎)-->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.freemarker</groupId>
|
|
|
|
+ <artifactId>freemarker</artifactId>
|
|
|
|
+ <version>${freemarker.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!--mybits-plus-->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
|
+ <artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
|
+ <version>${mybatisPlus.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!-- mybatis-plus-extension -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
|
+ <artifactId>mybatis-plus-extension</artifactId>
|
|
|
|
+ <version>${mybatisPlusExtension.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!-- 连接池 -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <!--自动配置-->
|
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
|
+ <artifactId>druid-spring-boot-starter</artifactId>
|
|
|
|
+ <version>${druid.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!-- velocity -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.apache.velocity</groupId>
|
|
|
|
+ <artifactId>velocity-engine-core</artifactId>
|
|
|
|
+ <version>${velocity.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!-- freemarker -->
|
|
|
|
+ <dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
- <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
- </plugin>
|
|
|
|
-
|
|
|
|
- <plugin>
|
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
- <artifactId>maven-resources-plugin</artifactId>
|
|
|
|
- <version>2.6</version>
|
|
|
|
- </plugin>
|
|
|
|
- </plugins>
|
|
|
|
|
|
+ <artifactId>spring-boot-starter-freemarker</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!-- netty -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>io.netty</groupId>
|
|
|
|
+ <artifactId>netty-all</artifactId>
|
|
|
|
+ <version>${netty.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!-- junit -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.junit.platform</groupId>
|
|
|
|
+ <artifactId>junit-platform-commons</artifactId>
|
|
|
|
+ <version>${junitPlatformCommons.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!-- 二方包统一版本管理 -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.huimv</groupId>
|
|
|
|
+ <artifactId>huimv-common</artifactId>
|
|
|
|
+ <version>${huimvCommon.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!-- 一方包统一版本管理 -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.huimv</groupId>
|
|
|
|
+ <artifactId>huimv-env-common</artifactId>
|
|
|
|
+ <version>${huimvEnvCommon.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ </dependencies>
|
|
|
|
+ </dependencyManagement>
|
|
|
|
|
|
- <!-- <resources>-->
|
|
|
|
- <!-- <resource>-->
|
|
|
|
- <!-- <directory>src/main/java</directory>-->
|
|
|
|
- <!-- <includes>-->
|
|
|
|
- <!-- <include>**/*.xml</include>-->
|
|
|
|
- <!-- </includes>-->
|
|
|
|
- <!-- <filtering>true</filtering>-->
|
|
|
|
- <!-- </resource>-->
|
|
|
|
- <!-- </resources>-->
|
|
|
|
- </build>
|
|
|
|
</project>
|
|
</project>
|