pom.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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.storlead.boot</groupId>
  8. <artifactId>storlead-sms</artifactId>
  9. <version>1.0</version>
  10. <relativePath>../pom.xml</relativePath>
  11. </parent>
  12. <artifactId>storlead-sms-biz</artifactId>
  13. <packaging>jar</packaging>
  14. <name>storlead-sms-biz</name>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.storlead.boot</groupId>
  18. <artifactId>storlead-sms-spi</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.storlead.boot</groupId>
  22. <artifactId>storlead-sms-core</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.storlead.boot</groupId>
  26. <artifactId>storlead-common</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.storlead.boot</groupId>
  30. <artifactId>storlead-redis</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.storlead.boot</groupId>
  34. <artifactId>storlead-mybatis</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.aliyun</groupId>
  38. <artifactId>aliyun-java-sdk-core</artifactId>
  39. <version>4.4.9</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.aliyun</groupId>
  43. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  44. <version>2.1.0</version>
  45. </dependency>
  46. </dependencies>
  47. </project>