pom.xml 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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. <parent>
  7. <groupId>com.mooctest.crowd</groupId>
  8. <artifactId>crowd</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. </parent>
  11. <groupId>com.mooctest.crowd</groupId>
  12. <artifactId>core</artifactId>
  13. <version>1.0-SNAPSHOT</version>
  14. <dependencies>
  15. <dependency>
  16. <groupId>junit</groupId>
  17. <artifactId>junit</artifactId>
  18. <version>4.12</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.mockito</groupId>
  22. <artifactId>mockito-all</artifactId>
  23. <version>1.10.19</version>
  24. <scope>test</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.powermock</groupId>
  28. <artifactId>powermock-module-junit4</artifactId>
  29. <version>1.6.4</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.powermock</groupId>
  33. <artifactId>powermock-api-mockito</artifactId>
  34. <version>1.6.4</version>
  35. </dependency>
  36. <!--定位-->
  37. <dependency>
  38. <groupId>org.jsoup</groupId>
  39. <artifactId>jsoup</artifactId>
  40. <version>1.7.3</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.projectlombok</groupId>
  44. <artifactId>lombok</artifactId>
  45. <version>1.18.6</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.google.guava</groupId>
  49. <artifactId>guava</artifactId>
  50. <version>18.0</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-data-jpa</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-web</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.h2database</groupId>
  62. <artifactId>h2</artifactId>
  63. <scope>runtime</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>mysql</groupId>
  67. <artifactId>mysql-connector-java</artifactId>
  68. <scope>runtime</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.projectlombok</groupId>
  72. <artifactId>lombok</artifactId>
  73. <optional>true</optional>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-starter-test</artifactId>
  78. <scope>test</scope>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.hibernate.javax.persistence</groupId>
  82. <artifactId>hibernate-jpa-2.1-api</artifactId>
  83. <version>1.0.0.Final</version>
  84. </dependency>
  85. <dependency>
  86. <groupId> org.springframework.boot </groupId>
  87. <artifactId> spring-boot-configuration-processor</artifactId>
  88. <optional> true </optional>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.google.code.gson</groupId>
  92. <artifactId>gson</artifactId>
  93. <version>2.8.5</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.alibaba</groupId>
  97. <artifactId>druid-spring-boot-starter</artifactId>
  98. <version>1.1.10</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.jetbrains</groupId>
  102. <artifactId>annotations</artifactId>
  103. <version>RELEASE</version>
  104. <scope>compile</scope>
  105. </dependency>
  106. <!-- https://mvnrepository.com/artifact/cn.afterturn/easypoi-spring-boot-starter -->
  107. <dependency>
  108. <groupId>cn.afterturn</groupId>
  109. <artifactId>easypoi-base</artifactId>
  110. <version>3.0.3</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>cn.afterturn</groupId>
  114. <artifactId>easypoi-web</artifactId>
  115. <version>3.0.3</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>cn.afterturn</groupId>
  119. <artifactId>easypoi-annotation</artifactId>
  120. <version>3.0.3</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>redis.clients</groupId>
  124. <artifactId>jedis</artifactId>
  125. <version>2.9.0</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>commons-fileupload</groupId>
  129. <artifactId>commons-fileupload</artifactId>
  130. <version>1.4</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>com.alibaba</groupId>
  134. <artifactId>fastjson</artifactId>
  135. <version>1.2.58</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>com.alibaba</groupId>
  139. <artifactId>fastjson</artifactId>
  140. <version>1.2.58</version>
  141. </dependency>
  142. </dependencies>
  143. <build>
  144. <plugins>
  145. <plugin>
  146. <groupId>org.apache.maven.plugins</groupId>
  147. <artifactId>maven-compiler-plugin</artifactId>
  148. <version>3.7.0</version>
  149. <configuration>
  150. <source>1.8</source>
  151. <target>1.8</target>
  152. </configuration>
  153. </plugin>
  154. <!-- <plugin>-->
  155. <!-- <groupId>org.apache.maven.surefire</groupId>-->
  156. <!-- <artifactId>surefire-junit4</artifactId>-->
  157. <!-- <version>2.12.4</version>-->
  158. <!-- </plugin>-->
  159. </plugins>
  160. </build>
  161. </project>