pom.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.2.0.RELEASE</version>
  9. </parent>
  10. <groupId>com.github.binarywang</groupId>
  11. <version>1.0.0-SNAPSHOT</version>
  12. <artifactId>weixin-java-cp-demo</artifactId>
  13. <packaging>jar</packaging>
  14. <name>spring-boot-demo-for-wechat-cp</name>
  15. <description>Spring Boot Demo with wechat CP</description>
  16. <properties>
  17. <weixin-java-cp.version>3.7.0</weixin-java-cp.version>
  18. <maven.compiler.source>1.8</maven.compiler.source>
  19. <maven.compiler.target>1.8</maven.compiler.target>
  20. <maven.compiler.encoding>UTF-8</maven.compiler.encoding>
  21. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  22. <project.build.locales>zh_CN</project.build.locales>
  23. </properties>
  24. <dependencies>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-web</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-configuration-processor</artifactId>
  36. <optional>true</optional>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.github.binarywang</groupId>
  40. <artifactId>weixin-java-cp</artifactId>
  41. <version>${weixin-java-cp.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.projectlombok</groupId>
  45. <artifactId>lombok</artifactId>
  46. <version>1.16.20</version>
  47. <scope>provided</scope>
  48. </dependency>
  49. <!-- Testing Dependencies -->
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-test</artifactId>
  53. <scope>test</scope>
  54. </dependency>
  55. <!-- Mybatis-plus -->
  56. <dependency>
  57. <groupId>com.baomidou</groupId>
  58. <artifactId>mybatisplus-spring-boot-starter</artifactId>
  59. <version>1.0.5</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.baomidou</groupId>
  63. <artifactId>mybatis-plus</artifactId>
  64. <version>2.1.9</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.alibaba</groupId>
  68. <artifactId>fastjson</artifactId>
  69. <version>1.2.47</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>mysql</groupId>
  73. <artifactId>mysql-connector-java</artifactId>
  74. <scope>runtime</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.microsoft.sqlserver</groupId>
  78. <artifactId>mssql-jdbc</artifactId>
  79. <version>7.4.1.jre8</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>commons-codec</groupId>
  83. <artifactId>commons-codec</artifactId>
  84. <version>1.11</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.apache.poi</groupId>
  88. <artifactId>poi</artifactId>
  89. <version>3.13</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.apache.poi</groupId>
  93. <artifactId>poi-ooxml</artifactId>
  94. <version>3.13</version>
  95. </dependency>
  96. </dependencies>
  97. <!-- 私有仓库地址 -->
  98. <distributionManagement>
  99. <repository>
  100. <id>releases</id>
  101. <name>releases</name>
  102. <url>http://localhost:8080/</url>
  103. </repository>
  104. <!--
  105. <url>http://localhost:8080/nexus/content/repositories/releases/</url>
  106. <snapshotRepository>-->
  107. <!--<id>snapshots</id>-->
  108. <!--<name>snapshots</name>-->
  109. <!--<url>http://localhost:8080/nexus/content/repositories/snapshots/</url>-->
  110. <!--</snapshotRepository>-->
  111. </distributionManagement>
  112. <build>
  113. <plugins>
  114. <plugin>
  115. <groupId>org.springframework.boot</groupId>
  116. <artifactId>spring-boot-maven-plugin</artifactId>
  117. </plugin>
  118. </plugins>
  119. </build>
  120. </project>