pom.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. <parent>
  6. <artifactId>notify-component</artifactId>
  7. <groupId>org.jetlinks.community</groupId>
  8. <version>1.10.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>notify-sms</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.hswebframework</groupId>
  15. <artifactId>hsweb-easy-orm-rdb</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.aliyun</groupId>
  19. <artifactId>aliyun-java-sdk-core</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.hswebframework.web</groupId>
  23. <artifactId>hsweb-starter</artifactId>
  24. <version>${hsweb.framework.version}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.jetlinks</groupId>
  28. <artifactId>rule-engine-support</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework</groupId>
  32. <artifactId>spring-context-indexer</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.jetlinks.community</groupId>
  36. <artifactId>notify-core</artifactId>
  37. <version>${project.version}</version>
  38. </dependency>
  39. </dependencies>
  40. </project>