pom.xml 4.8 KB

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