123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- <?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>sz_jian</artifactId>
- <groupId>com.leisp</groupId>
- <version>1.0.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>mybusiness</artifactId>
- <description>
- 业务模块
- </description>
- <dependencies>
- <!-- 通用工具-->
- <dependency>
- <groupId>com.leisp</groupId>
- <artifactId>leisp-common</artifactId>
- </dependency>
- <dependency>
- <groupId>com.leisp</groupId>
- <artifactId>leisp-system</artifactId>
- </dependency>
- <dependency>
- <groupId>com.leisp</groupId>
- <artifactId>leisp-framework</artifactId>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.belerweb/pinyin4j -->
- <dependency>
- <groupId>com.belerweb</groupId>
- <artifactId>pinyin4j</artifactId>
- <version>2.5.1</version>
- </dependency>
- <!--海康-->
- <dependency>
- <groupId>com.hikvision.ga</groupId>
- <artifactId>artemis-http-client</artifactId>
- <version>1.1.3</version>
- </dependency>
- <dependency>
- <groupId>AXmlResourceParser</groupId>
- <artifactId>AXmlResourceParser_</artifactId>
- <version>2.3</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/src/main/resources/ext_jar/AXmlResourceParser.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>dd-plist-1.16</groupId>
- <artifactId>dd-plist-1.16_</artifactId>
- <version>2.3</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/src/main/resources/ext_jar/dd-plist-1.16.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>org.bytedeco</groupId>
- <artifactId>javacv-platform</artifactId>
- <version>1.5.1</version>
- <type>pom</type>
- </dependency>
- <dependency>
- <groupId>commons-net</groupId>
- <artifactId>commons-net</artifactId>
- <version>3.1</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.jetbrains.kotlin/kotlin-stdlib -->
- <!--打包发布时需要打开,本机运行时需要注释掉(孙一石)-->
- <!--<dependency>
- <groupId>org.jetbrains.kotlin</groupId>
- <artifactId>kotlin-stdlib</artifactId>
- <version>1.4.21</version>
- </dependency>-->
- <!--ActiveMq-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-activemq</artifactId>
- <version>1.5.0.RELEASE</version>
- </dependency>
- <!--消息队列连接池-->
- <dependency>
- <groupId>org.apache.activemq</groupId>
- <artifactId>activemq-pool</artifactId>
- <version>5.15.0</version>
- </dependency>
- <dependency>
- <groupId>it.sauronsoftware.ftp4j</groupId>
- <artifactId>ftp4j</artifactId>
- <version>1.6</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/src/main/resources/ext_jar/ftp4j-1.6.jar</systemPath>
- </dependency>
- </dependencies>
- </project>
|