pom.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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-centre-platform</artifactId>
  9. <version>1.0</version>
  10. <relativePath>../pom.xml</relativePath> <!-- 或者默认 -->
  11. </parent>
  12. <artifactId>storlead-sms</artifactId>
  13. <packaging>jar</packaging>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.storlead.boot</groupId>
  17. <artifactId>storlead-web</artifactId>
  18. <version>1.0</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.storlead.boot</groupId>
  22. <artifactId>storlead-common</artifactId>
  23. <version>1.0</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.storlead.boot</groupId>
  27. <artifactId>storlead-redis</artifactId>
  28. <version>1.0</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.storlead.boot</groupId>
  32. <artifactId>storlead-mybatis</artifactId>
  33. <version>1.0</version>
  34. </dependency>
  35. <!--阿里短信 SDK start -->
  36. <dependency>
  37. <groupId>com.aliyun</groupId>
  38. <artifactId>aliyun-java-sdk-core</artifactId>
  39. <version>4.4.9</version>
  40. </dependency>
  41. <!-- https://mvnrepository.com/artifact/com.aliyun/aliyun-java-sdk-dysmsapi -->
  42. <dependency>
  43. <groupId>com.aliyun</groupId>
  44. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  45. <version>2.1.0</version>
  46. </dependency>
  47. </dependencies>
  48. </project>