191 lines
6.6 KiB
XML
191 lines
6.6 KiB
XML
|
|
<?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">
|
||
|
|
<parent>
|
||
|
|
<artifactId>skyeye</artifactId>
|
||
|
|
<groupId>com.zhangy</groupId>
|
||
|
|
<version>1.0.0.RELEASE</version>
|
||
|
|
</parent>
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
|
||
|
|
<artifactId>skyeye-service-manager</artifactId>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
<!-- 扩展工具包 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.zhangy</groupId>
|
||
|
|
<artifactId>skyeye-common-extend</artifactId>
|
||
|
|
<version>1.0.0.RELEASE</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- 通用依赖封装 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.zhangy</groupId>
|
||
|
|
<artifactId>skyeye-common</artifactId>
|
||
|
|
<version>1.0.0.RELEASE</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- 数据源 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.zhangy</groupId>
|
||
|
|
<artifactId>skyeye-db</artifactId>
|
||
|
|
<version>1.0.0.RELEASE</version>
|
||
|
|
<exclusions>
|
||
|
|
<exclusion>
|
||
|
|
<artifactId>knife4j-micro-spring-boot-starter</artifactId>
|
||
|
|
<groupId>com.github.xiaoymin</groupId>
|
||
|
|
</exclusion>
|
||
|
|
</exclusions>
|
||
|
|
</dependency>
|
||
|
|
<!-- redis依赖封装 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.zhangy</groupId>
|
||
|
|
<artifactId>skyeye-redis</artifactId>
|
||
|
|
<version>1.0.0.RELEASE</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- 工具类模块 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.zhangy</groupId>
|
||
|
|
<artifactId>skyeye-util</artifactId>
|
||
|
|
<version>1.0.0.RELEASE</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- Mysql -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>mysql</groupId>
|
||
|
|
<artifactId>mysql-connector-java</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- web socket -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.java-websocket</groupId>
|
||
|
|
<artifactId>Java-WebSocket</artifactId>
|
||
|
|
<version>1.5.3</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- 参数校验 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- 测试 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>junit</groupId>
|
||
|
|
<artifactId>junit</artifactId>
|
||
|
|
<version>4.13.2</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- 增强 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.aspectj</groupId>
|
||
|
|
<artifactId>aspectjrt</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- 图像处理 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.opencv</groupId>
|
||
|
|
<artifactId>opencv</artifactId>
|
||
|
|
<version>4.11.0</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- gis工具 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.geotools</groupId>
|
||
|
|
<artifactId>gt-geotiff</artifactId>
|
||
|
|
<version>30.0</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.geotools</groupId>
|
||
|
|
<artifactId>gt-opengis</artifactId>
|
||
|
|
<version>29.6</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- HSQL 内存数据库(轻量级) -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.geotools</groupId>
|
||
|
|
<artifactId>gt-epsg-hsql</artifactId>
|
||
|
|
<version>30.0</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- 加密 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.github.ulisesbocchio</groupId>
|
||
|
|
<artifactId>jasypt-spring-boot-starter</artifactId>
|
||
|
|
<version>3.0.5</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- 视频处理 -->
|
||
|
|
<!--<dependency>
|
||
|
|
<groupId>org.bytedeco</groupId>
|
||
|
|
<artifactId>javacv-platform</artifactId>
|
||
|
|
<version>1.5.9</version>
|
||
|
|
</dependency>-->
|
||
|
|
<!-- 任务调度 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.quartz-scheduler</groupId>
|
||
|
|
<artifactId>quartz</artifactId>
|
||
|
|
<version>2.3.2</version>
|
||
|
|
</dependency>
|
||
|
|
<!--<dependency>
|
||
|
|
<groupId>org.quartz-scheduler</groupId>
|
||
|
|
<artifactId>quartz-jobs</artifactId>
|
||
|
|
<version>2.3.2</version>
|
||
|
|
</dependency>-->
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
<repositories>
|
||
|
|
<repository>
|
||
|
|
<id>osgeo</id>
|
||
|
|
<name>OSGeo Release Repository</name>
|
||
|
|
<url>https://repo.osgeo.org/repository/release/</url>
|
||
|
|
<snapshots>
|
||
|
|
<enabled>false</enabled>
|
||
|
|
</snapshots>
|
||
|
|
<releases>
|
||
|
|
<enabled>true</enabled>
|
||
|
|
</releases>
|
||
|
|
</repository>
|
||
|
|
</repositories>
|
||
|
|
|
||
|
|
<build>
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-resources-plugin</artifactId>
|
||
|
|
<version>3.1.0</version>
|
||
|
|
<configuration>
|
||
|
|
<encoding>UTF-8</encoding>
|
||
|
|
<nonFilteredFileExtensions>
|
||
|
|
<!-- 防止打包时dll文件大小被改变-->
|
||
|
|
<nonFilteredFileExtension>so</nonFilteredFileExtension>
|
||
|
|
</nonFilteredFileExtensions>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
|
<version>2.7.18</version>
|
||
|
|
<executions>
|
||
|
|
<execution>
|
||
|
|
<goals>
|
||
|
|
<goal>repackage</goal> <!-- 重新打包成 Fat JAR -->
|
||
|
|
</goals>
|
||
|
|
</execution>
|
||
|
|
</executions>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
|
<configuration>
|
||
|
|
<source>11</source>
|
||
|
|
<target>11</target>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
</plugins>
|
||
|
|
<!-- 打包时排除的资源文件 -->
|
||
|
|
<!--<resources>
|
||
|
|
<resource>
|
||
|
|
<directory>src/main/resources</directory>
|
||
|
|
<excludes>
|
||
|
|
<exclude>**/application*.yml</exclude>
|
||
|
|
<exclude>**/*.sql</exclude>
|
||
|
|
</excludes>
|
||
|
|
</resource>
|
||
|
|
</resources>-->
|
||
|
|
</build>
|
||
|
|
|
||
|
|
</project>
|