pom.xml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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.10.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.pavis.rec</groupId>
  12. <artifactId>ocr-rec</artifactId>
  13. <version>1.0</version>
  14. <name>ocr-rec</name>
  15. <description>OCR BILL RECOGNITION</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <swagger2.version>2.9.2</swagger2.version>
  19. <mysql-version>5.1.34</mysql-version>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-aop</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-web</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-configuration-processor</artifactId>
  33. <optional>true</optional>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-validation</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>mysql</groupId>
  41. <artifactId>mysql-connector-java</artifactId>
  42. <version>${mysql-version}</version>
  43. <scope>runtime</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-test</artifactId>
  48. <scope>test</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.baomidou</groupId>
  52. <artifactId>mybatis-plus-boot-starter</artifactId>
  53. <version>3.2.0</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.google.code.gson</groupId>
  57. <artifactId>gson</artifactId>
  58. <version>2.8.5</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.projectlombok</groupId>
  62. <artifactId>lombok</artifactId>
  63. <optional>true</optional>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-starter-test</artifactId>
  68. <scope>test</scope>
  69. <exclusions>
  70. <exclusion>
  71. <groupId>org.junit.vintage</groupId>
  72. <artifactId>junit-vintage-engine</artifactId>
  73. </exclusion>
  74. </exclusions>
  75. </dependency>
  76. <dependency>
  77. <groupId>io.springfox</groupId>
  78. <artifactId>springfox-swagger2</artifactId>
  79. <version>${swagger2.version}</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>io.springfox</groupId>
  83. <artifactId>springfox-swagger-ui</artifactId>
  84. <version>${swagger2.version}</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.github.xiaoymin</groupId>
  88. <artifactId>swagger-bootstrap-ui</artifactId>
  89. <version>1.9.2</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.alibaba</groupId>
  93. <artifactId>fastjson</artifactId>
  94. <version>1.2.47</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>joda-time</groupId>
  98. <artifactId>joda-time</artifactId>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.apache.commons</groupId>
  102. <artifactId>commons-lang3</artifactId>
  103. </dependency>
  104. <dependency>
  105. <groupId>commons-collections</groupId>
  106. <artifactId>commons-collections</artifactId>
  107. <version>3.2.2</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.springframework</groupId>
  111. <artifactId>spring-tx</artifactId>
  112. <version>5.1.11.RELEASE</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>com.baidu.aip</groupId>
  116. <artifactId>java-sdk</artifactId>
  117. <version>4.12.0</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.baidubce</groupId>
  121. <artifactId>bce-java-sdk</artifactId>
  122. <version>0.10.78</version>
  123. <exclusions>
  124. <exclusion>
  125. <groupId>ch.qos.logback</groupId>
  126. <artifactId>logback-classic</artifactId>
  127. </exclusion>
  128. <exclusion>
  129. <groupId>org.slf4j</groupId>
  130. <artifactId>slf4j-log4j12</artifactId>
  131. </exclusion>
  132. </exclusions>
  133. </dependency>
  134. </dependencies>
  135. <build>
  136. <plugins>
  137. <plugin>
  138. <groupId>org.springframework.boot</groupId>
  139. <artifactId>spring-boot-maven-plugin</artifactId>
  140. </plugin>
  141. </plugins>
  142. </build>
  143. </project>