pom.xml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  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>imcs-admin-boot</artifactId>
  7. <groupId>com.github.zuihou</groupId>
  8. <version>b.2.5-SNAPSHOT</version>
  9. <relativePath>../</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>imcs-sms-biz</artifactId>
  13. <name>${project.artifactId}</name>
  14. <description>短信服务业务模块</description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.github.zuihou</groupId>
  18. <artifactId>imcs-msgs-entity</artifactId>
  19. <version>${imcs-project.version}</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.github.zuihou</groupId>
  23. <artifactId>imcs-jobs-api</artifactId>
  24. <version>${imcs-project.version}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.github.zuihou</groupId>
  28. <artifactId>zuihou-databases</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.github.zuihou</groupId>
  32. <artifactId>zuihou-dozer-starter</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.github.zuihou</groupId>
  36. <artifactId>zuihou-boot</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-web</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.baomidou</groupId>
  44. <artifactId>mybatis-plus</artifactId>
  45. </dependency>
  46. <!-- aliyun -->
  47. <dependency>
  48. <groupId>com.aliyun</groupId>
  49. <artifactId>aliyun-java-sdk-core</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.aliyun</groupId>
  53. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  54. </dependency>
  55. <!-- 腾讯 -->
  56. <dependency>
  57. <groupId>com.github.qcloudsms</groupId>
  58. <artifactId>qcloudsms</artifactId>
  59. </dependency>
  60. <!-- 百度 -->
  61. <dependency>
  62. <groupId>com.baidubce</groupId>
  63. <artifactId>bce-java-sdk</artifactId>
  64. <exclusions>
  65. <exclusion>
  66. <groupId>com.google.guava</groupId>
  67. <artifactId>guava</artifactId>
  68. </exclusion>
  69. </exclusions>
  70. </dependency>
  71. </dependencies>
  72. <build>
  73. <resources>
  74. <resource>
  75. <directory>src/main/resources</directory>
  76. </resource>
  77. </resources>
  78. </build>
  79. </project>