123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265 |
- <?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>taiji.hn.axv2</groupId>
- <artifactId>axv2-monitor</artifactId>
- <version>1.0</version>
- <parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>2.2.13.RELEASE</version>
- <relativePath />
- </parent>
- <!-- 配置参数 -->
- <properties>
- <!--全局参数 -->
- <file.encoding>UTF-8</file.encoding>
- <project.build.sourceEncoding>${file.encoding}</project.build.sourceEncoding>
- <project.build.resourceEncoding>${file.encoding}</project.build.resourceEncoding>
- <project.reporting.outputEncoding>${file.encoding}</project.reporting.outputEncoding>
- <java.version>1.8</java.version>
- </properties>
- <dependencies>
- <!-- springboot 相关 -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-logging</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-websocket</artifactId>
- </dependency>
- <!--引入kafka依赖 -->
- <dependency>
- <groupId>org.apache.kafka</groupId>
- <artifactId>kafka-clients</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.kafka</groupId>
- <artifactId>spring-kafka</artifactId>
- </dependency>
- <!-- 视频处理库 -->
- <!-- jave 核心依赖 -->
- <dependency>
- <groupId>ws.schild</groupId>
- <artifactId>jave-core</artifactId>
- <version>2.4.6</version>
- </dependency>
-
- <!-- 根据不同操作系统引入不同FFmpeg包 -->
- <!-- window64位 FFmpeg -->
- <dependency>
- <groupId>ws.schild</groupId>
- <artifactId>jave-native-win64</artifactId>
- <version>2.4.6</version>
- </dependency>
- <!-- linux64位 FFmpeg -->
- <dependency>
- <groupId>ws.schild</groupId>
- <artifactId>jave-native-linux64</artifactId>
- <version>2.4.6</version>
- </dependency>
- <!-- <dependency>
- <groupId>org.bytedeco</groupId>
- <artifactId>javacv</artifactId>
- <version>1.5.7</version>
- <exclusions>
- <exclusion>
- <groupId>org.openjfx</groupId>
- <artifactId>javafx-graphics</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.bytedeco</groupId>
- <artifactId>javacpp</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.bytedeco</groupId>
- <artifactId>openblas</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.bytedeco</groupId>
- <artifactId>opencv</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.bytedeco</groupId>
- <artifactId>tesseract</artifactId>
-
- </exclusion>
- <exclusion>
- <groupId>org.bytedeco</groupId>
- <artifactId>flycapture</artifactId>
-
- </exclusion>
- <exclusion>
- <groupId>org.bytedeco</groupId>
- <artifactId>libdc1394</artifactId>
-
- </exclusion>
- <exclusion>
- <groupId>org.bytedeco</groupId>
- <artifactId>libfreenect</artifactId>
-
- </exclusion>
- <exclusion>
- <groupId>org.bytedeco</groupId>
- <artifactId>libfreenect2</artifactId>
-
- </exclusion>
- <exclusion>
- <groupId>org.bytedeco</groupId>
- <artifactId>librealsense</artifactId>
-
- </exclusion>
- <exclusion>
- <groupId>org.bytedeco</groupId>
- <artifactId>librealsense2</artifactId>
-
- </exclusion>
- <exclusion>
- <groupId>org.bytedeco</groupId>
- <artifactId>videoinput</artifactId>
-
- </exclusion>
- <exclusion>
- <groupId>org.bytedeco</groupId>
- <artifactId>artoolkitplus</artifactId>
-
- </exclusion>
- <exclusion>
- <groupId>org.bytedeco</groupId>
- <artifactId>flandmark</artifactId>
-
- </exclusion>
- <exclusion>
- <groupId>org.bytedeco</groupId>
- <artifactId>leptonica</artifactId>
-
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.bytedeco</groupId>
- <artifactId>javacpp</artifactId>
- <version>1.5.7</version>
- </dependency>
- <dependency>
- <groupId>org.bytedeco</groupId>
- <artifactId>ffmpeg</artifactId>
- <version>4.4-1.5.6</version>
- <classifier>windows-x86_64</classifier>
- <scope>provided</scope>
- <exclusions>
- <exclusion>
- <groupId>org.bytedeco</groupId>
- <artifactId>javacpp</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.bytedeco</groupId>
- <artifactId>ffmpeg</artifactId>
- <version>4.4-1.5.6</version>
- <classifier>linux-x86_64</classifier>
- <scope>runtime</scope>
- <exclusions>
- <exclusion>
- <groupId>org.bytedeco</groupId>
- <artifactId>javacpp</artifactId>
- </exclusion>
- </exclusions>
- </dependency> -->
- <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- <version>5.1.46</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.postgresql</groupId>
- <artifactId>postgresql</artifactId>
- </dependency>
-
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- <version>1.2.60</version>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-boot-starter</artifactId>
- <version>2.3</version>
- </dependency>
- <dependency>
- <groupId>com.hikvision.ga</groupId>
- <artifactId>artemis-http-client</artifactId>
- <version>1.1.3</version>
- </dependency>
- <dependency>
- <groupId>org.dom4j</groupId>
- <artifactId>dom4j</artifactId>
- <version>2.0.0</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-configuration-processor</artifactId>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-configuration-processor</artifactId>
- <optional>true</optional>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- <repositories>
- <repository>
- <id>central</id>
- <url>https://maven.aliyun.com/repository/central/</url>
- </repository>
- </repositories>
- <pluginRepositories>
- <pluginRepository>
- <id>central</id>
- <url>https://maven.aliyun.com/repository/central/</url>
- </pluginRepository>
- </pluginRepositories>
- </project>
|