pom.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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>formulahousekeeper</artifactId>
  7. <groupId>com.hssx.parent</groupId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>com.hssx.parent</groupId>
  12. <artifactId>management-platform</artifactId>
  13. <version>1.0-SNAPSHOT</version>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.springframework.boot</groupId>
  17. <artifactId>spring-boot-starter-web</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.github.pagehelper</groupId>
  21. <artifactId>pagehelper-spring-boot-starter</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>mysql</groupId>
  25. <artifactId>mysql-connector-java</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.apache.poi</groupId>
  29. <artifactId>poi</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.apache.poi</groupId>
  33. <artifactId>poi-ooxml</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.baomidou</groupId>
  37. <artifactId>mybatis-plus-boot-starter</artifactId>
  38. </dependency>
  39. <!-- mybatis-plus代码生成器依赖 -->
  40. <dependency>
  41. <groupId>com.baomidou</groupId>
  42. <artifactId>mybatis-plus-generator</artifactId>
  43. </dependency>
  44. <!-- velocity模板引擎 -->
  45. <dependency>
  46. <groupId>org.apache.velocity</groupId>
  47. <artifactId>velocity-engine-core</artifactId>
  48. </dependency>
  49. <!-- freemarker 模板引擎-->
  50. <dependency>
  51. <groupId>org.freemarker</groupId>
  52. <artifactId>freemarker</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.projectlombok</groupId>
  56. <artifactId>lombok</artifactId>
  57. </dependency>
  58. <!-- fastjson -->
  59. <dependency>
  60. <groupId>com.alibaba</groupId>
  61. <artifactId>fastjson</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-data-redis</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.baidu.aip</groupId>
  69. <artifactId>java-sdk</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-starter-test</artifactId>
  74. </dependency>
  75. <!--开启aop支持-->
  76. <dependency>
  77. <groupId>org.springframework.boot</groupId>
  78. <artifactId>spring-boot-starter-aop</artifactId>
  79. <exclusions>
  80. <exclusion>
  81. <groupId>org.springframework.boot</groupId>
  82. <artifactId>spring-boot-starter-logging</artifactId>
  83. </exclusion>
  84. </exclusions>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.aspectj</groupId>
  88. <artifactId>aspectjweaver</artifactId>
  89. </dependency>
  90. <!-- tess4j相关依赖 -->
  91. <!-- https://mvnrepository.com/artifact/net.sourceforge.tess4j/tess4j -->
  92. <dependency>
  93. <groupId>net.sourceforge.tess4j</groupId>
  94. <artifactId>tess4j</artifactId>
  95. </dependency>
  96. <!--手动引入opencv 否则无法maven打包-->
  97. <dependency>
  98. <groupId>org.opencv</groupId>
  99. <artifactId>opencv</artifactId>
  100. <version>4.2.0</version>
  101. <scope>system</scope>
  102. <systemPath>${basedir}/opencv/opencv-420.jar</systemPath>
  103. </dependency>
  104. </dependencies>
  105. <build>
  106. <plugins>
  107. <plugin>
  108. <groupId>org.springframework.boot</groupId>
  109. <artifactId>spring-boot-maven-plugin</artifactId>
  110. <configuration>
  111. <includeSystemScope>true</includeSystemScope>
  112. </configuration>
  113. </plugin>
  114. </plugins>
  115. </build>
  116. </project>