12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <?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>VehicleMonitor</artifactId>
- <groupId>com.ozs</groupId>
- <version>1.0-SNAPSHOT</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>business-service</artifactId>
- <dependencies>
- <!-- 通用工具-->
- <dependency>
- <groupId>com.ozs</groupId>
- <artifactId>base-common</artifactId>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-generator</artifactId>
- <version>3.4.1</version>
- </dependency>
- <dependency>
- <groupId>org.apache.velocity</groupId>
- <artifactId>velocity-engine-core</artifactId>
- <version>2.0</version>
- </dependency>
- <!-- Mysql驱动包 -->
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- </dependency>
- <dependency>
- <groupId>com.dm</groupId>
- <artifactId>DmJdbcDriver18</artifactId>
- <version>1.8</version>
- </dependency>
- <!-- 阿里云oss依赖 -->
- <dependency>
- <groupId>com.aliyun.oss</groupId>
- <artifactId>aliyun-sdk-oss</artifactId>
- <version>3.1.0</version>
- </dependency>
- <!-- 日期工具栏依赖 -->
- <dependency>
- <groupId>joda-time</groupId>
- <artifactId>joda-time</artifactId>
- <version>2.10.1</version>
- </dependency>
- <dependency>
- <groupId>com.hikvision.ga</groupId>
- <artifactId>artemis-http-client</artifactId>
- <version>1.1.3</version>
- </dependency>
- <!--直播流转视频-->
- <dependency>
- <groupId>org.bytedeco</groupId>
- <artifactId>javacv</artifactId>
- <version>1.4.3</version>
- </dependency>
- <dependency>
- <groupId>org.bytedeco.javacpp-presets</groupId>
- <artifactId>ffmpeg-platform</artifactId>
- <version>4.0.2-1.4.3</version>
- </dependency>
- <!--这个依赖区分Linux系统和windows系统-->
- <dependency>
- <groupId>com.github.hoary.ffmpeg</groupId>
- <artifactId>FFmpeg-windows-x86_64</artifactId>
- <version>2.0.1.1</version>
- </dependency>
- <dependency>
- <groupId>com.ozs</groupId>
- <artifactId>base-framework</artifactId>
- </dependency>
- </dependencies>
- </project>
|