短信以及微信消息发送服务
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

139 lines
4.3 KiB

  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. <groupId>org.example</groupId>
  7. <artifactId>sms-msg-sender</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <properties>
  10. <maven.compiler.source>8</maven.compiler.source>
  11. <maven.compiler.target>8</maven.compiler.target>
  12. <revision>0.2.10</revision>
  13. <nacos-config-spring-boot.version>0.2.1</nacos-config-spring-boot.version>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-web</artifactId>
  19. <version>2.0.3.RELEASE</version>
  20. <exclusions>
  21. <exclusion>
  22. <groupId>com.fasterxml.jackson.core</groupId>
  23. <artifactId>jackson-databind</artifactId>
  24. </exclusion>
  25. </exclusions>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.projectlombok</groupId>
  29. <artifactId>lombok</artifactId>
  30. <scope>provided</scope>
  31. <optional>true</optional>
  32. <version>1.16.22</version>
  33. </dependency>
  34. <!-- Testing Dependencies -->
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-test</artifactId>
  38. <scope>test</scope>
  39. <version>2.0.6.RELEASE</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>redis.clients</groupId>
  43. <artifactId>jedis</artifactId>
  44. <version>3.3.0</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.github.binarywang</groupId>
  48. <artifactId>weixin-java-mp</artifactId>
  49. <version>4.1.0</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.aliyun</groupId>
  53. <artifactId>dysmsapi20170525</artifactId>
  54. <version>2.0.5</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.aliyun</groupId>
  58. <artifactId>tea-console</artifactId>
  59. <version>0.0.1</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.aliyun</groupId>
  63. <artifactId>dyvmsapi20170525</artifactId>
  64. <version>3.0.0</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.alibaba</groupId>
  68. <artifactId>fastjson</artifactId>
  69. <version>1.2.44</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.alibaba.cloud</groupId>
  73. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  74. <version>2.0.1.RELEASE</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework.cloud</groupId>
  78. <artifactId>spring-cloud-starter-config</artifactId>
  79. <version>2.0.1.RELEASE</version>
  80. </dependency>
  81. </dependencies>
  82. <build>
  83. <resources>
  84. <resource>
  85. <directory>src/main/resources</directory>
  86. <filtering>true</filtering>
  87. </resource>
  88. </resources>
  89. <finalName>sms-msg-sender</finalName>
  90. <plugins>
  91. <plugin>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-maven-plugin</artifactId>
  94. <version>2.0.6.RELEASE</version>
  95. <executions>
  96. <execution>
  97. <goals>
  98. <goal>repackage</goal>
  99. </goals>
  100. </execution>
  101. </executions>
  102. </plugin>
  103. </plugins>
  104. </build>
  105. <profiles>
  106. <profile>
  107. <id>dev</id>
  108. <activation>
  109. <activeByDefault>true</activeByDefault>
  110. </activation>
  111. <properties>
  112. <spring.profiles.active>dev</spring.profiles.active>
  113. </properties>
  114. </profile>
  115. <profile>
  116. <id>prod</id>
  117. <properties>
  118. <spring.profiles.active>prod</spring.profiles.active>
  119. </properties>
  120. </profile>
  121. </profiles>
  122. </project>