pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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-api</artifactId>
  9. <version>1.0.0</version>
  10. </parent>
  11. <artifactId>unis-plugin-dev-api</artifactId>
  12. <packaging>jar</packaging>
  13. <description>开发工具插件api接口</description>
  14. <dependencies>
  15. <!-- 每个插件接口都要引入common -->
  16. <dependency>
  17. <groupId>com.unis</groupId>
  18. <artifactId>unis-common</artifactId>
  19. </dependency>
  20. <!--腾讯云上传文件客户端-->
  21. <dependency>
  22. <groupId>com.qcloud</groupId>
  23. <artifactId>cos_api</artifactId>
  24. <exclusions>
  25. <exclusion>
  26. <artifactId>tencentcloud-sdk-java-common</artifactId>
  27. <groupId>com.tencentcloudapi</groupId>
  28. </exclusion>
  29. </exclusions>
  30. </dependency>
  31. <!--阿里云上传文件客户端-->
  32. <dependency>
  33. <groupId>com.aliyun.oss</groupId>
  34. <artifactId>aliyun-sdk-oss</artifactId>
  35. <exclusions>
  36. <exclusion>
  37. <groupId>org.codehaus.jettison</groupId>
  38. <artifactId>jettison</artifactId>
  39. </exclusion>
  40. </exclusions>
  41. </dependency>
  42. <!-- jettison -->
  43. <dependency>
  44. <groupId>org.codehaus.jettison</groupId>
  45. <artifactId>jettison</artifactId>
  46. </dependency>
  47. <!--minio上传文件客户端-->
  48. <dependency>
  49. <groupId>io.minio</groupId>
  50. <artifactId>minio</artifactId>
  51. </dependency>
  52. <!--java邮件发送-->
  53. <dependency>
  54. <groupId>com.sun.mail</groupId>
  55. <artifactId>javax.mail</artifactId>
  56. </dependency>
  57. <!--阿里云邮件发送-->
  58. <dependency>
  59. <groupId>com.aliyun</groupId>
  60. <artifactId>aliyun-java-sdk-dm</artifactId>
  61. </dependency>
  62. <!-- 腾讯云邮件发送 -->
  63. <dependency>
  64. <groupId>com.tencentcloudapi</groupId>
  65. <artifactId>tencentcloud-sdk-java-ses</artifactId>
  66. <exclusions>
  67. <exclusion>
  68. <artifactId>okio-jvm</artifactId>
  69. <groupId>com.squareup.okio</groupId>
  70. </exclusion>
  71. </exclusions>
  72. </dependency>
  73. <!--阿里云短信发送-->
  74. <dependency>
  75. <groupId>com.aliyun</groupId>
  76. <artifactId>dysmsapi20170525</artifactId>
  77. <exclusions>
  78. <exclusion>
  79. <artifactId>org.jacoco.agent</artifactId>
  80. <groupId>org.jacoco</groupId>
  81. </exclusion>
  82. </exclusions>
  83. </dependency>
  84. <!--腾讯云短信发送-->
  85. <dependency>
  86. <groupId>com.tencentcloudapi</groupId>
  87. <artifactId>tencentcloud-sdk-java-sms</artifactId>
  88. </dependency>
  89. <!--系统硬件信息-->
  90. <dependency>
  91. <groupId>com.github.oshi</groupId>
  92. <artifactId>oshi-core</artifactId>
  93. </dependency>
  94. </dependencies>
  95. </project>