pom.xml 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  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>item-management-1phase</artifactId>
  7. <groupId>com.dayou</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>service</artifactId>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <maven.compiler.source>1.8</maven.compiler.source>
  15. <maven.compiler.target>1.8</maven.compiler.target>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.dayou</groupId>
  20. <artifactId>common</artifactId>
  21. <version>1.0-SNAPSHOT</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.dayou</groupId>
  25. <artifactId>dao</artifactId>
  26. <version>1.0-SNAPSHOT</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>junit</groupId>
  30. <artifactId>junit</artifactId>
  31. <version>4.12</version>
  32. <scope>test</scope>
  33. </dependency>
  34. <!-- excel工具 -->
  35. <dependency>
  36. <groupId>org.apache.poi</groupId>
  37. <artifactId>poi-ooxml</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.google.guava</groupId>
  41. <artifactId>guava</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-aop</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.fasterxml.jackson.datatype</groupId>
  49. <artifactId>jackson-datatype-jsr310</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>commons-fileupload</groupId>
  53. <artifactId>commons-fileupload</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>es.moki.ratelimitj</groupId>
  57. <artifactId>ratelimitj-core</artifactId>
  58. <version>0.6.0</version>
  59. <scope>compile</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>es.moki.ratelimitj</groupId>
  63. <artifactId>ratelimitj-inmemory</artifactId>
  64. <version>0.6.0</version>
  65. <scope>compile</scope>
  66. </dependency>
  67. <!-- https://mvnrepository.com/artifact/fr.opensagres.xdocreport/fr.opensagres.xdocreport.document -->
  68. <dependency>
  69. <groupId>fr.opensagres.xdocreport</groupId>
  70. <artifactId>fr.opensagres.poi.xwpf.converter.pdf-gae</artifactId>
  71. <version>2.0.3</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.apache.lucene</groupId>
  75. <artifactId>lucene-core</artifactId>
  76. <version>7.6.0</version>
  77. </dependency>
  78. <!-- https://mvnrepository.com/artifact/org.apache.lucene/lucene-analyzers-common -->
  79. <dependency>
  80. <groupId>org.apache.lucene</groupId>
  81. <artifactId>lucene-analyzers-common</artifactId>
  82. <version>7.6.0</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.apache.lucene</groupId>
  86. <artifactId>lucene-queryparser</artifactId>
  87. <version>7.6.0</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.apache.lucene</groupId>
  91. <artifactId>lucene-analyzers-smartcn</artifactId>
  92. <version>7.6.0</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.apache.lucene</groupId>
  96. <artifactId>lucene-highlighter</artifactId>
  97. <version>7.6.0</version>
  98. </dependency>
  99. <!-- https://mvnrepository.com/artifact/com.janeluo/ikanalyzer -->
  100. <dependency>
  101. <groupId>com.jianggujin</groupId>
  102. <artifactId>IKAnalyzer-lucene</artifactId>
  103. <version>8.0.0</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>com.baomidou</groupId>
  107. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.springframework.boot</groupId>
  111. <artifactId>spring-boot-starter-websocket</artifactId>
  112. </dependency>
  113. </dependencies>
  114. <build>
  115. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  116. <plugins>
  117. <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  118. <plugin>
  119. <artifactId>maven-clean-plugin</artifactId>
  120. <version>3.1.0</version>
  121. </plugin>
  122. <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  123. <plugin>
  124. <artifactId>maven-resources-plugin</artifactId>
  125. <version>3.0.2</version>
  126. </plugin>
  127. <plugin>
  128. <artifactId>maven-compiler-plugin</artifactId>
  129. <version>3.8.0</version>
  130. </plugin>
  131. <plugin>
  132. <artifactId>maven-surefire-plugin</artifactId>
  133. <version>2.22.1</version>
  134. </plugin>
  135. <plugin>
  136. <artifactId>maven-jar-plugin</artifactId>
  137. <version>3.0.2</version>
  138. </plugin>
  139. <plugin>
  140. <artifactId>maven-install-plugin</artifactId>
  141. <version>2.5.2</version>
  142. </plugin>
  143. <plugin>
  144. <artifactId>maven-deploy-plugin</artifactId>
  145. <version>2.8.2</version>
  146. </plugin>
  147. <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  148. <plugin>
  149. <artifactId>maven-site-plugin</artifactId>
  150. <version>3.7.1</version>
  151. </plugin>
  152. <plugin>
  153. <artifactId>maven-project-info-reports-plugin</artifactId>
  154. <version>3.0.0</version>
  155. </plugin>
  156. </plugins>
  157. </pluginManagement>
  158. </build>
  159. </project>