pom.xml 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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 https://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.1.13.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.pavis.ai.app</groupId>
  12. <artifactId>cr-ocr</artifactId>
  13. <version>0.0.1</version>
  14. <name>cr-ocr</name>
  15. <description>合同审核项目 无权限版本。</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <spring-cloud.version>Greenwich.SR5</spring-cloud.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-amqp</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-data-jdbc</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-data-redis</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-mail</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-quartz</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-web</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.cloud</groupId>
  47. <artifactId>spring-cloud-starter-netflix-ribbon</artifactId>
  48. </dependency>
  49. <!-- 带权限使用 -->
  50. <!-- <dependency>-->
  51. <!-- <groupId>org.springframework.cloud</groupId>-->
  52. <!-- <artifactId>spring-cloud-starter-oauth2</artifactId>-->
  53. <!-- </dependency>-->
  54. <dependency>
  55. <groupId>org.springframework.cloud</groupId>
  56. <artifactId>spring-cloud-starter-openfeign</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>mysql</groupId>
  60. <artifactId>mysql-connector-java</artifactId>
  61. <scope>runtime</scope>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.projectlombok</groupId>
  65. <artifactId>lombok</artifactId>
  66. <optional>true</optional>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-starter-test</artifactId>
  71. <scope>test</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework.amqp</groupId>
  75. <artifactId>spring-rabbit-test</artifactId>
  76. <scope>test</scope>
  77. </dependency>
  78. <!-- 通用包 -->
  79. <dependency>
  80. <groupId>com.baomidou</groupId>
  81. <artifactId>mybatis-plus-boot-starter</artifactId>
  82. <version>3.2.0</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>io.springfox</groupId>
  86. <artifactId>springfox-swagger2</artifactId>
  87. <version>2.9.2</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>io.springfox</groupId>
  91. <artifactId>springfox-swagger-ui</artifactId>
  92. <version>2.9.2</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.github.xiaoymin</groupId>
  96. <artifactId>knife4j-spring-ui</artifactId>
  97. <version>2.0.2</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.google.guava</groupId>
  101. <artifactId>guava</artifactId>
  102. <version>27.0.1-jre</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.alibaba</groupId>
  106. <artifactId>fastjson</artifactId>
  107. <version>1.2.47</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>joda-time</groupId>
  111. <artifactId>joda-time</artifactId>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.apache.commons</groupId>
  115. <artifactId>commons-lang3</artifactId>
  116. </dependency>
  117. <dependency>
  118. <groupId>commons-collections</groupId>
  119. <artifactId>commons-collections</artifactId>
  120. <version>3.2.2</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>commons-codec</groupId>
  124. <artifactId>commons-codec</artifactId>
  125. <version>1.14</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.apache.commons</groupId>
  129. <artifactId>commons-text</artifactId>
  130. <version>1.8</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>commons-beanutils</groupId>
  134. <artifactId>commons-beanutils</artifactId>
  135. <version>1.9.4</version>
  136. </dependency>
  137. </dependencies>
  138. <dependencyManagement>
  139. <dependencies>
  140. <dependency>
  141. <groupId>org.springframework.cloud</groupId>
  142. <artifactId>spring-cloud-dependencies</artifactId>
  143. <version>${spring-cloud.version}</version>
  144. <type>pom</type>
  145. <scope>import</scope>
  146. </dependency>
  147. </dependencies>
  148. </dependencyManagement>
  149. <build>
  150. <plugins>
  151. <plugin>
  152. <groupId>org.springframework.boot</groupId>
  153. <artifactId>spring-boot-maven-plugin</artifactId>
  154. </plugin>
  155. </plugins>
  156. </build>
  157. </project>