pom.xml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.sd</groupId>
  8. <artifactId>shdy_project</artifactId>
  9. <version>2.0</version>
  10. </parent>
  11. <artifactId>sd-framework</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.fjhx</groupId>
  20. <artifactId>hx-base</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.fjhx</groupId>
  24. <artifactId>hx-flow</artifactId>
  25. </dependency>
  26. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
  27. <dependency>
  28. <groupId>org.apache.httpcomponents</groupId>
  29. <artifactId>httpclient</artifactId>
  30. <version>4.5.14</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.alibaba</groupId>
  34. <artifactId>easyexcel</artifactId>
  35. <version>3.3.2</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.google.guava</groupId>
  39. <artifactId>guava</artifactId>
  40. <version>33.0.0-jre</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.bytedeco</groupId>
  44. <artifactId>opencv</artifactId>
  45. <version>4.7.0-1.5.9</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.apache.commons</groupId>
  49. <artifactId>commons-imaging</artifactId>
  50. <version>1.0-alpha3</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.itextpdf</groupId>
  54. <artifactId>itextpdf</artifactId>
  55. <version>5.5.13.3</version>
  56. </dependency>
  57. <!-- https://mvnrepository.com/artifact/com.lowagie/itext -->
  58. <dependency>
  59. <groupId>com.lowagie</groupId>
  60. <artifactId>itext</artifactId>
  61. <version>4.2.2</version>
  62. </dependency>
  63. </dependencies>
  64. </project>