pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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>linkwechat-cloud</artifactId>
  7. <groupId>com.linkwechat</groupId>
  8. <version>3.1.0</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>linkwe-wecom</artifactId>
  13. <description>
  14. 企业微信相关模块
  15. </description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <maven.compiler.source>1.8</maven.compiler.source>
  19. <maven.compiler.target>1.8</maven.compiler.target>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-web</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter</artifactId>
  29. </dependency>
  30. <!-- 阿里数据库连接池 -->
  31. <dependency>
  32. <groupId>com.alibaba</groupId>
  33. <artifactId>druid-spring-boot-starter</artifactId>
  34. </dependency>
  35. <!-- spring-boot-devtools -->
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-devtools</artifactId>
  39. <optional>true</optional> <!-- 表示依赖不会传递 -->
  40. </dependency>
  41. <dependency>
  42. <groupId>com.alibaba.cloud</groupId>
  43. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  44. <version>2021.1</version>
  45. </dependency>
  46. <!-- LinkWechat Common Redis-->
  47. <!-- <dependency>-->
  48. <!-- <groupId>com.linkwechat</groupId>-->
  49. <!-- <artifactId>linkwe-common</artifactId>-->
  50. <!-- <version>3.1.0</version>-->
  51. <!-- </dependency>-->
  52. <dependency>
  53. <groupId>com.linkwechat</groupId>
  54. <artifactId>linkwe-service</artifactId>
  55. </dependency>
  56. <!-- SpringCloud Alibaba Nacos Config -->
  57. <dependency>
  58. <groupId>com.alibaba.cloud</groupId>
  59. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  60. <!-- <version>2021.1</version>-->
  61. </dependency>
  62. <dependency>
  63. <groupId>com.baomidou</groupId>
  64. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  65. </dependency>
  66. </dependencies>
  67. <build>
  68. <finalName>lw-wecom</finalName>
  69. <plugins>
  70. <plugin>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-maven-plugin</artifactId>
  73. <version>2.3.3.RELEASE</version>
  74. <executions>
  75. <execution>
  76. <goals>
  77. <goal>repackage</goal>
  78. </goals>
  79. </execution>
  80. </executions>
  81. </plugin>
  82. <plugin>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-maven-plugin</artifactId>
  85. <configuration>
  86. <jvmArguments>-Xdebug -Xrunjdwp:transport=dt_socket,address=5005,server=y,suspend=n</jvmArguments>
  87. </configuration>
  88. </plugin>
  89. </plugins>
  90. </build>
  91. </project>