| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448 | 
							- <?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.ztmap</groupId>
 
-     <artifactId>zhny_admin</artifactId>
 
-     <version>2.0.0</version>
 
-     <packaging>jar</packaging>
 
-     <name>zhny_admin</name>
 
-     <url></url>
 
-     <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>
 
-         <mybatis.spring.boot.starter.version>2.1.4</mybatis.spring.boot.starter.version>
 
-         <pagehelper.spring.boot.starter.version>1.3.0</pagehelper.spring.boot.starter.version>
 
-         <fastjson.version>1.2.75</fastjson.version>
 
-         <druid.version>1.2.4</druid.version>
 
-         <commons.io.version>2.5</commons.io.version>
 
-         <commons.fileupload.version>1.3.3</commons.fileupload.version>
 
-         <bitwalker.version>1.21</bitwalker.version>
 
-         <velocity.version>1.7</velocity.version>
 
-         <kaptcha.version>2.3.2</kaptcha.version>
 
-         <swagger.version>2.9.2</swagger.version>
 
-         <poi.version>4.1.2</poi.version>
 
-         <oshi.version>5.6.0</oshi.version>
 
-         <jna.version>5.7.0</jna.version>
 
-     </properties>
 
-     <dependencies>
 
-         <dependency>
 
-             <groupId>com.google.code.gson</groupId>
 
-             <artifactId>gson</artifactId>
 
-             <version>2.8.0</version>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>org.locationtech.jts</groupId>
 
-             <artifactId>jts-core</artifactId>
 
-             <version>1.18.2</version>
 
-         </dependency>
 
-         <!-- SpringBoot 核心包 -->
 
-         <dependency>
 
-             <groupId>org.springframework.boot</groupId>
 
-             <artifactId>spring-boot-starter</artifactId>
 
-         </dependency>
 
-         <!-- SpringBoot 测试 -->
 
-         <dependency>
 
-             <groupId>org.springframework.boot</groupId>
 
-             <artifactId>spring-boot-starter-test</artifactId>
 
-             <scope>test</scope>
 
-         </dependency>
 
-         <!-- SpringBoot 拦截器 -->
 
-         <dependency>
 
-             <groupId>org.springframework.boot</groupId>
 
-             <artifactId>spring-boot-starter-aop</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>
 
-         <!-- 计算两个坐标距离数 -->
 
-         <dependency>
 
-             <groupId>org.gavaghan</groupId>
 
-             <artifactId>geodesy</artifactId>
 
-             <version>1.1.3</version>
 
-         </dependency>
 
-         <!-- Mysql驱动包 -->
 
-         <dependency>
 
-             <groupId>mysql</groupId>
 
-             <artifactId>mysql-connector-java</artifactId>
 
-         </dependency>
 
-         <!-- SpringBoot集成mybatis框架 -->
 
-         <dependency>
 
-             <groupId>org.mybatis.spring.boot</groupId>
 
-             <artifactId>mybatis-spring-boot-starter</artifactId>
 
-             <version>${mybatis.spring.boot.starter.version}</version>
 
-         </dependency>
 
-         <!-- pagehelper 分页插件 -->
 
-         <dependency>
 
-             <groupId>com.github.pagehelper</groupId>
 
-             <artifactId>pagehelper-spring-boot-starter</artifactId>
 
-             <version>${pagehelper.spring.boot.starter.version}</version>
 
-         </dependency>
 
-         <!--阿里数据库连接池 -->
 
-         <dependency>
 
-             <groupId>com.alibaba</groupId>
 
-             <artifactId>druid-spring-boot-starter</artifactId>
 
-             <version>${druid.version}</version>
 
-         </dependency>
 
-         <!--常用工具类 -->
 
-         <dependency>
 
-             <groupId>org.apache.commons</groupId>
 
-             <artifactId>commons-lang3</artifactId>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>cn.hutool</groupId>
 
-             <artifactId>hutool-all</artifactId>
 
-             <version>4.1.12</version>
 
-         </dependency>
 
-         <!--io常用工具类 -->
 
-         <dependency>
 
-             <groupId>commons-io</groupId>
 
-             <artifactId>commons-io</artifactId>
 
-             <version>${commons.io.version}</version>
 
-         </dependency>
 
-         <!--文件上传工具类 -->
 
-         <dependency>
 
-             <groupId>commons-fileupload</groupId>
 
-             <artifactId>commons-fileupload</artifactId>
 
-             <version>${commons.fileupload.version}</version>
 
-         </dependency>
 
-         <!--Shiro核心框架 -->
 
-         <dependency>
 
-             <groupId>org.apache.shiro</groupId>
 
-             <artifactId>shiro-core</artifactId>
 
-             <version>${shiro.version}</version>
 
-         </dependency>
 
-         <!-- Shiro使用Spring框架 -->
 
-         <dependency>
 
-             <groupId>org.apache.shiro</groupId>
 
-             <artifactId>shiro-spring</artifactId>
 
-             <version>${shiro.version}</version>
 
-         </dependency>
 
-         <!-- Shiro使用EhCache缓存框架 -->
 
-         <dependency>
 
-             <groupId>org.apache.shiro</groupId>
 
-             <artifactId>shiro-ehcache</artifactId>
 
-             <version>${shiro.version}</version>
 
-         </dependency>
 
-         <!-- thymeleaf模板引擎和shiro框架的整合 -->
 
-         <dependency>
 
-             <groupId>com.github.theborakompanioni</groupId>
 
-             <artifactId>thymeleaf-extras-shiro</artifactId>
 
-             <version>${thymeleaf.extras.shiro.version}</version>
 
-         </dependency>
 
-         <!-- 阿里JSON解析器 -->
 
-         <dependency>
 
-             <groupId>com.alibaba</groupId>
 
-             <artifactId>fastjson</artifactId>
 
-             <version>${fastjson.version}</version>
 
-         </dependency>
 
-         <!-- redis 缓存操作 -->
 
-         <dependency>
 
-             <groupId>org.springframework.boot</groupId>
 
-             <artifactId>spring-boot-starter-data-redis</artifactId>
 
-         </dependency>
 
-         <!--Token生成与解析-->
 
-         <dependency>
 
-             <groupId>io.jsonwebtoken</groupId>
 
-             <artifactId>jjwt</artifactId>
 
-             <version>0.9.1</version>
 
-         </dependency>
 
-         <!-- 解析客户端操作系统、浏览器等 -->
 
-         <dependency>
 
-             <groupId>eu.bitwalker</groupId>
 
-             <artifactId>UserAgentUtils</artifactId>
 
-             <version>${bitwalker.version}</version>
 
-         </dependency>
 
-         <!--Spring框架基本的核心工具-->
 
-         <dependency>
 
-             <groupId>org.springframework</groupId>
 
-             <artifactId>spring-context-support</artifactId>
 
-         </dependency>
 
-         <!-- modbus -->
 
-         <dependency>
 
-             <groupId>com.digitalpetri.modbus</groupId>
 
-             <artifactId>modbus-master-tcp</artifactId>
 
-             <version>1.1.0</version>
 
-         </dependency>
 
- <!--        <dependency>-->
 
- <!--            <groupId>com.infiniteautomation</groupId>-->
 
- <!--            <artifactId>modbus4j</artifactId>-->
 
- <!--            <version>3.0.3</version>-->
 
- <!--        </dependency>-->
 
-         <!-- 定时任务 -->
 
-         <dependency>
 
-             <groupId>org.quartz-scheduler</groupId>
 
-             <artifactId>quartz</artifactId>
 
-             <exclusions>
 
-                 <exclusion>
 
-                     <groupId>com.mchange</groupId>
 
-                     <artifactId>c3p0</artifactId>
 
-                 </exclusion>
 
-             </exclusions>
 
-         </dependency>
 
-         <!--velocity代码生成使用模板 -->
 
-         <dependency>
 
-             <groupId>org.apache.velocity</groupId>
 
-             <artifactId>velocity</artifactId>
 
-             <version>${velocity.version}</version>
 
-             <exclusions>
 
-                 <exclusion>
 
-                     <groupId>commons-collections</groupId>
 
-                     <artifactId>commons-collections</artifactId>
 
-                 </exclusion>
 
-             </exclusions>
 
-         </dependency>
 
-         <!--验证码 -->
 
-         <dependency>
 
-             <groupId>com.github.penggle</groupId>
 
-             <artifactId>kaptcha</artifactId>
 
-             <version>${kaptcha.version}</version>
 
-             <exclusions>
 
-                 <exclusion>
 
-                     <artifactId>javax.servlet-api</artifactId>
 
-                     <groupId>javax.servlet</groupId>
 
-                 </exclusion>
 
-             </exclusions>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>org.jsoup</groupId>
 
-             <artifactId>jsoup</artifactId>
 
-             <version>1.13.1</version>
 
-         </dependency>
 
-         <!-- swagger2-->
 
-         <dependency>
 
-             <groupId>io.springfox</groupId>
 
-             <artifactId>springfox-swagger2</artifactId>
 
-             <version>${swagger.version}</version>
 
-             <exclusions>
 
-                 <exclusion>
 
-                     <groupId>io.swagger</groupId>
 
-                     <artifactId>swagger-annotations</artifactId>
 
-                 </exclusion>
 
-                 <exclusion>
 
-                     <groupId>io.swagger</groupId>
 
-                     <artifactId>swagger-models</artifactId>
 
-                 </exclusion>
 
-             </exclusions>
 
-         </dependency>
 
-         <!--防止进入swagger页面报类型转换错误,排除2.9.2中的引用,手动增加1.5.21版本-->
 
-         <dependency>
 
-             <groupId>io.swagger</groupId>
 
-             <artifactId>swagger-annotations</artifactId>
 
-             <version>1.5.21</version>
 
-         </dependency>
 
-         
 
-          <dependency>
 
-             <groupId>io.swagger</groupId>
 
-             <artifactId>swagger-models</artifactId>
 
-             <version>1.5.21</version>
 
-         </dependency>
 
-         
 
-         <!-- swagger2-UI-->
 
-         <dependency>
 
-             <groupId>io.springfox</groupId>
 
-             <artifactId>springfox-swagger-ui</artifactId>
 
-             <version>${swagger.version}</version>
 
-         </dependency>
 
-         <!-- 获取系统信息 -->
 
-         <dependency>
 
-             <groupId>com.github.oshi</groupId>
 
-             <artifactId>oshi-core</artifactId>
 
-             <version>${oshi.version}</version>
 
-         </dependency>
 
-         <!-- excel工具 -->
 
-         <dependency>
 
-             <groupId>org.apache.poi</groupId>
 
-             <artifactId>poi-ooxml</artifactId>
 
-             <version>${poi.version}</version>
 
-         </dependency>
 
-         <!-- 海康综合安防管理平台 -->
 
-         <dependency>
 
-             <groupId>com.hikvision.ga</groupId>
 
-             <artifactId>artemis-http-client</artifactId>
 
-             <version>1.1.3</version>
 
-         </dependency>
 
-         <!--   geotools相关pom     -->
 
-         <dependency>
 
-             <groupId>com.vividsolutions</groupId>
 
-             <artifactId>jts</artifactId>
 
-             <version>1.13</version>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>org.gdal</groupId>
 
-             <artifactId>gdal</artifactId>
 
-             <version>3.2.0</version>
 
-         </dependency>
 
-         <!--<dependency>
 
-             <groupId>org.geotools</groupId>
 
-             <artifactId>gt-epsg-hsql</artifactId>
 
-             <version>20.0</version>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>org.geotools</groupId>
 
-             <artifactId>gt-main</artifactId>
 
-             <version>20.0</version>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>org.geotools</groupId>
 
-             <artifactId>gt-cql</artifactId>
 
-             <version>20.0</version>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>org.geotools</groupId>
 
-             <artifactId>gt-shapefile</artifactId>
 
-             <version>20.0</version>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>org.geotools</groupId>
 
-             <artifactId>gt-opengis</artifactId>
 
-             <version>20.0</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>com.google.cloud.tools</groupId>
 
-                 <artifactId>jib-maven-plugin</artifactId>
 
-                 <version>3.4.1</version>
 
-                 <configuration>
 
-                     <!--允许非https-->
 
-                     <allowInsecureRegistries>true</allowInsecureRegistries>
 
-                     <!--from节点用来设置镜像的基础镜像,相当于Docerkfile中的FROM关键字-->
 
-                     <from>
 
-                         <image>k8s.xt.wenhq.top:8082/docker_r/javarun:1.2</image>
 
-                     </from>
 
-                     <to>
 
-                         <!--镜像名称和tag,使用了mvn内置变量${project.version},表示当前工程的version-->
 
-                         <image>docker.xt.wenhq.top:8083/zhny/${project.name}:${project.version}</image>
 
-                         <auth>
 
-                             <username>admin</username>
 
-                             <password>xtwenhongquan</password>
 
-                         </auth>
 
-                     </to>
 
-                     <!--容器相关的属性-->
 
-                     <container>
 
-                         <mainClass>com.ztmap.ZTMapApplication</mainClass>
 
-                         <jvmFlags>
 
-                             <jvmFlag>-Xdebug</jvmFlag>
 
-                         </jvmFlags>
 
-                         <ports>9087</ports>
 
-                     </container>
 
-                 </configuration>
 
-                 <executions>
 
-                     <execution>
 
-                         <phase>package</phase>
 
-                         <goals>
 
-                             <goal>build</goal>
 
-                         </goals>
 
-                     </execution>
 
-                 </executions>
 
-             </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>
 
 
  |