pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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>3.5.4</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>org.example</groupId>
  12. <artifactId>demo</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>demo</name>
  15. <description>demo</description>
  16. <url/>
  17. <licenses>
  18. <license/>
  19. </licenses>
  20. <developers>
  21. <developer/>
  22. </developers>
  23. <scm>
  24. <connection/>
  25. <developerConnection/>
  26. <tag/>
  27. <url/>
  28. </scm>
  29. <properties>
  30. <java.version>17</java.version>
  31. <google.code.gson.version>2.7</google.code.gson.version>
  32. <okhttps.version>4.10.0</okhttps.version>
  33. <fastjson.version>2.0.12</fastjson.version>
  34. </properties>
  35. <dependencies>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-test</artifactId>
  43. <scope>test</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.openpnp</groupId>
  47. <artifactId>opencv</artifactId>
  48. <version>3.4.2-0</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.alibaba</groupId>
  52. <artifactId>fastjson</artifactId>
  53. <version>${fastjson.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>net.sourceforge.tess4j</groupId>
  57. <artifactId>tess4j</artifactId>
  58. <version>5.8.0</version>
  59. </dependency>
  60. <!-- <dependency>-->
  61. <!-- <groupId>org</groupId>-->
  62. <!-- <artifactId>opencv</artifactId>-->
  63. <!-- <scope>system</scope>-->
  64. <!-- <version>4.12.0</version>-->
  65. <!-- <systemPath>${project.basedir}\src\main\resources\lib\opencv\opencv-4120.jar</systemPath>-->
  66. <!-- </dependency>-->
  67. <dependency>
  68. <groupId>org.bytedeco</groupId>
  69. <artifactId>javacv-platform</artifactId>
  70. <version>1.5.9</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.projectlombok</groupId>
  74. <artifactId>lombok</artifactId>
  75. <scope>provided</scope>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.apache.commons</groupId>
  79. <artifactId>commons-lang3</artifactId>
  80. <version>3.12.0</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.apache.pdfbox</groupId>
  84. <artifactId>pdfbox</artifactId>
  85. <version>3.0.3</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.google.code.gson</groupId>
  89. <artifactId>gson</artifactId>
  90. <!-- <version>${google.code.gson.version}</version>-->
  91. </dependency>
  92. <dependency>
  93. <groupId>com.squareup.okhttp3</groupId>
  94. <artifactId>okhttp</artifactId>
  95. <version>3.14.9</version>
  96. </dependency>
  97. </dependencies>
  98. <build>
  99. <plugins>
  100. <plugin>
  101. <groupId>org.springframework.boot</groupId>
  102. <artifactId>spring-boot-maven-plugin</artifactId>
  103. </plugin>
  104. </plugins>
  105. </build>
  106. </project>