pom.xml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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>com-yingyangfly</groupId>
  7. <artifactId>hcp-core</artifactId>
  8. <version>1.0.0</version>
  9. <parent>
  10. <artifactId>hcp-parent</artifactId>
  11. <groupId>com.yingyangfly</groupId>
  12. <version>1.0.0</version>
  13. </parent>
  14. <dependencies>
  15. <!-- https://mvnrepository.com/artifact/com.alibaba/easyexcel -->
  16. <dependency>
  17. <groupId>com.alibaba</groupId>
  18. <artifactId>easyexcel</artifactId>
  19. <version>4.0.1</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.mybatis.generator</groupId>
  23. <artifactId>mybatis-generator-core</artifactId>
  24. <version>1.3.7</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.github.wechatpay-apiv3</groupId>
  28. <artifactId>wechatpay-apache-httpclient</artifactId>
  29. <version>0.4.8</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.alipay.sdk</groupId>
  33. <artifactId>alipay-easysdk</artifactId>
  34. <version>2.2.0</version>
  35. </dependency>
  36. <!--lombook-->
  37. <dependency>
  38. <groupId>org.projectlombok</groupId>
  39. <artifactId>lombok</artifactId>
  40. <version>1.18.24</version>
  41. <scope>compile</scope>
  42. </dependency>
  43. <!-- spring security 安全认证 -->
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-security</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>io.jsonwebtoken</groupId>
  50. <artifactId>jjwt</artifactId>
  51. <version>0.9.1</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>cglib</groupId>
  55. <artifactId>cglib</artifactId>
  56. <version>2.2</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.bouncycastle</groupId>
  60. <artifactId>bcprov-jdk15on</artifactId>
  61. <version>1.56</version>
  62. </dependency>
  63. <!--极光-->
  64. <dependency>
  65. <groupId>cn.jpush.api</groupId>
  66. <artifactId>jpush-client</artifactId>
  67. <version>3.2.17</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>cn.jpush.api</groupId>
  71. <artifactId>jiguang-common</artifactId>
  72. <version>1.1.1</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.google.code.gson</groupId>
  76. <artifactId>gson</artifactId>
  77. <version>2.3</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.aliyun</groupId>
  81. <artifactId>dysmsapi20170525</artifactId>
  82. <version>2.0.24</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.aliyun</groupId>
  86. <artifactId>tea-openapi</artifactId>
  87. <version>0.2.8</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.aliyun</groupId>
  91. <artifactId>tea-console</artifactId>
  92. <version>0.0.1</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.aliyun</groupId>
  96. <artifactId>tea-util</artifactId>
  97. <version>0.2.20</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.alipay.sdk</groupId>
  101. <artifactId>alipay-sdk-java</artifactId>
  102. <version>3.0.0</version>
  103. </dependency>
  104. <!--mongodb-->
  105. <dependency>
  106. <groupId>org.springframework.boot</groupId>
  107. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  108. </dependency>
  109. </dependencies>
  110. <build>
  111. <plugins>
  112. <!-- <plugin>
  113. <groupId>org.mybatis.generator</groupId>
  114. <artifactId>mybatis-generator-maven-plugin</artifactId>
  115. <version>1.3.2</version>
  116. <configuration>
  117. <verbose>true</verbose>
  118. <overwrite>true</overwrite>
  119. </configuration>
  120. <executions>
  121. <execution>
  122. <id>Generate MyBatis Artifacts</id>
  123. <goals>
  124. <goal>generate</goal>
  125. </goals>
  126. </execution>
  127. </executions>
  128. <dependencies>
  129. <dependency>
  130. <groupId>org.mybatis.generator</groupId>
  131. <artifactId>mybatis-generator-core</artifactId>
  132. <version>1.3.2</version>
  133. </dependency>
  134. </dependencies>
  135. </plugin>-->
  136. </plugins>
  137. </build>
  138. </project>