1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?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>
-
- <parent>
- <groupId>com.unis</groupId>
- <artifactId>unis-plugin</artifactId>
- <version>1.0.0</version>
- </parent>
-
- <artifactId>unis-plugin-biz</artifactId>
- <packaging>jar</packaging>
- <description>业务功能插件</description>
-
- <dependencies>
- <!-- 每个插件都要引入自己的对外接口 -->
- <dependency>
- <groupId>com.unis</groupId>
- <artifactId>unis-plugin-biz-api</artifactId>
- </dependency>
-
- <!-- 引入登录鉴权接口,用于获取登录用户 -->
- <dependency>
- <groupId>com.unis</groupId>
- <artifactId>unis-plugin-auth-api</artifactId>
- </dependency>
-
- <!-- 引入系统接口,用于授权角色等功能 -->
- <dependency>
- <groupId>com.unis</groupId>
- <artifactId>unis-plugin-sys-api</artifactId>
- </dependency>
-
- <!-- 引入开发工具接口,用于配置信息 -->
- <dependency>
- <groupId>com.unis</groupId>
- <artifactId>unis-plugin-dev-api</artifactId>
- </dependency>
- <dependency>
- <groupId>com.unis</groupId>
- <artifactId>unis-plugin-sys</artifactId>
- </dependency>
-
- <dependency>
- <groupId>com.unis</groupId>
- <artifactId>unis-plugin-auth</artifactId>
- </dependency>
-
- <!-- 敏感词工具包 -->
- <dependency>
- <groupId>com.github.houbb</groupId>
- <artifactId>sensitive-word</artifactId>
- <version>0.3.1</version>
- </dependency>
- <!--海康start-->
- <dependency>
- <groupId>com.hikvision.ga</groupId>
- <artifactId>artemis-http-client</artifactId>
- <version>1.1.11</version>
- <scope>system</scope>
- <systemPath> ${project.basedir}/lib/artemis-http-client-1.1.11.RELEASE.jar</systemPath>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- <version>4.5.14</version>
- </dependency>
- <!--海康end-->
- </dependencies>
-
- </project>
|