pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.unis</groupId>
  8. <artifactId>unis-plugin</artifactId>
  9. <version>1.0.0</version>
  10. </parent>
  11. <artifactId>unis-plugin-biz</artifactId>
  12. <packaging>jar</packaging>
  13. <description>业务功能插件</description>
  14. <dependencies>
  15. <!-- 每个插件都要引入自己的对外接口 -->
  16. <dependency>
  17. <groupId>com.unis</groupId>
  18. <artifactId>unis-plugin-biz-api</artifactId>
  19. </dependency>
  20. <!-- 引入登录鉴权接口,用于获取登录用户 -->
  21. <dependency>
  22. <groupId>com.unis</groupId>
  23. <artifactId>unis-plugin-auth-api</artifactId>
  24. </dependency>
  25. <!-- 引入系统接口,用于授权角色等功能 -->
  26. <dependency>
  27. <groupId>com.unis</groupId>
  28. <artifactId>unis-plugin-sys-api</artifactId>
  29. </dependency>
  30. <!-- 引入开发工具接口,用于配置信息 -->
  31. <dependency>
  32. <groupId>com.unis</groupId>
  33. <artifactId>unis-plugin-dev-api</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.unis</groupId>
  37. <artifactId>unis-plugin-sys</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.unis</groupId>
  41. <artifactId>unis-plugin-auth</artifactId>
  42. </dependency>
  43. <!-- 敏感词工具包 -->
  44. <dependency>
  45. <groupId>com.github.houbb</groupId>
  46. <artifactId>sensitive-word</artifactId>
  47. <version>0.3.1</version>
  48. </dependency>
  49. <!--海康start-->
  50. <dependency>
  51. <groupId>com.hikvision.ga</groupId>
  52. <artifactId>artemis-http-client</artifactId>
  53. <version>1.1.11</version>
  54. <scope>system</scope>
  55. <systemPath> ${project.basedir}/lib/artemis-http-client-1.1.11.RELEASE.jar</systemPath>
  56. </dependency>
  57. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
  58. <dependency>
  59. <groupId>org.apache.httpcomponents</groupId>
  60. <artifactId>httpclient</artifactId>
  61. <version>4.5.14</version>
  62. </dependency>
  63. <!--海康end-->
  64. </dependencies>
  65. </project>