pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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>vip.xiaonuo</groupId>
  8. <artifactId>snowy-plugin-api</artifactId>
  9. <version>2.0.0</version>
  10. </parent>
  11. <artifactId>snowy-plugin-dev-api</artifactId>
  12. <packaging>jar</packaging>
  13. <description>开发工具插件api接口</description>
  14. <dependencies>
  15. <!-- 每个插件接口都要引入common -->
  16. <dependency>
  17. <groupId>vip.xiaonuo</groupId>
  18. <artifactId>snowy-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. </dependency>
  36. <!--minio上传文件客户端-->
  37. <dependency>
  38. <groupId>io.minio</groupId>
  39. <artifactId>minio</artifactId>
  40. </dependency>
  41. <!--java邮件发送-->
  42. <dependency>
  43. <groupId>com.sun.mail</groupId>
  44. <artifactId>javax.mail</artifactId>
  45. </dependency>
  46. <!--阿里云邮件发送-->
  47. <dependency>
  48. <groupId>com.aliyun</groupId>
  49. <artifactId>aliyun-java-sdk-dm</artifactId>
  50. </dependency>
  51. <!-- 腾讯云邮件发送 -->
  52. <dependency>
  53. <groupId>com.tencentcloudapi</groupId>
  54. <artifactId>tencentcloud-sdk-java-ses</artifactId>
  55. <exclusions>
  56. <exclusion>
  57. <artifactId>okio-jvm</artifactId>
  58. <groupId>com.squareup.okio</groupId>
  59. </exclusion>
  60. </exclusions>
  61. </dependency>
  62. <!--阿里云短信发送-->
  63. <dependency>
  64. <groupId>com.aliyun</groupId>
  65. <artifactId>dysmsapi20170525</artifactId>
  66. <exclusions>
  67. <exclusion>
  68. <artifactId>org.jacoco.agent</artifactId>
  69. <groupId>org.jacoco</groupId>
  70. </exclusion>
  71. </exclusions>
  72. </dependency>
  73. <!--腾讯云短信发送-->
  74. <dependency>
  75. <groupId>com.tencentcloudapi</groupId>
  76. <artifactId>tencentcloud-sdk-java-sms</artifactId>
  77. </dependency>
  78. <!--系统硬件信息-->
  79. <dependency>
  80. <groupId>com.github.oshi</groupId>
  81. <artifactId>oshi-core</artifactId>
  82. </dependency>
  83. </dependencies>
  84. </project>