pom.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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-exam</artifactId>
  9. <version>2.0.0</version>
  10. </parent>
  11. <artifactId>snowy-plugin-exam-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. </dependency>
  25. <!--阿里云上传文件客户端-->
  26. <dependency>
  27. <groupId>com.aliyun.oss</groupId>
  28. <artifactId>aliyun-sdk-oss</artifactId>
  29. <exclusions>
  30. <exclusion>
  31. <groupId>org.codehaus.jettison</groupId>
  32. <artifactId>jettison</artifactId>
  33. </exclusion>
  34. </exclusions>
  35. </dependency>
  36. <!-- jettison -->
  37. <dependency>
  38. <groupId>org.codehaus.jettison</groupId>
  39. <artifactId>jettison</artifactId>
  40. </dependency>
  41. <!--minio上传文件客户端-->
  42. <dependency>
  43. <groupId>io.minio</groupId>
  44. <artifactId>minio</artifactId>
  45. </dependency>
  46. <!--java邮件发送-->
  47. <dependency>
  48. <groupId>com.sun.mail</groupId>
  49. <artifactId>javax.mail</artifactId>
  50. </dependency>
  51. <!--阿里云邮件发送-->
  52. <dependency>
  53. <groupId>com.aliyun</groupId>
  54. <artifactId>aliyun-java-sdk-dm</artifactId>
  55. </dependency>
  56. <!-- 腾讯云邮件发送 -->
  57. <dependency>
  58. <groupId>com.tencentcloudapi</groupId>
  59. <artifactId>tencentcloud-sdk-java-ses</artifactId>
  60. </dependency>
  61. <!--阿里云短信发送-->
  62. <dependency>
  63. <groupId>com.aliyun</groupId>
  64. <artifactId>dysmsapi20170525</artifactId>
  65. </dependency>
  66. <!--腾讯云短信发送-->
  67. <dependency>
  68. <groupId>com.tencentcloudapi</groupId>
  69. <artifactId>tencentcloud-sdk-java-sms</artifactId>
  70. </dependency>
  71. <!--系统硬件信息-->
  72. <dependency>
  73. <groupId>com.github.oshi</groupId>
  74. <artifactId>oshi-core</artifactId>
  75. </dependency>
  76. </dependencies>
  77. </project>