pom.xml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. <groupId>com.jwipc</groupId>
  7. <artifactId>po-order</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>po-order-logic</artifactId>
  12. <name>${project.artifactId}</name>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-test</artifactId>
  17. <scope>test</scope>
  18. </dependency>
  19. <dependency>
  20. <groupId>junit</groupId>
  21. <artifactId>junit</artifactId>
  22. <scope>test</scope>
  23. </dependency>
  24. <!-- itext7html转pdf -->
  25. <dependency>
  26. <groupId>com.itextpdf</groupId>
  27. <artifactId>html2pdf</artifactId>
  28. <!-- <version>3.0.2</version>-->
  29. </dependency>
  30. <!-- 中文字体支持 -->
  31. <dependency>
  32. <groupId>com.itextpdf</groupId>
  33. <artifactId>itext-asian</artifactId>
  34. <!-- <version>7.1.13</version>-->
  35. </dependency>
  36. <dependency>
  37. <groupId>${parent.groupId}</groupId>
  38. <artifactId>jwipc-web</artifactId>
  39. <scope>provided</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>${parent.groupId}</groupId>
  43. <artifactId>po-order-infra</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>${parent.groupId}</groupId>
  47. <artifactId>sys-client</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>${parent.groupId}</groupId>
  51. <artifactId>jwipc-api</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>${parent.groupId}</groupId>
  55. <artifactId>tender-client</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>${parent.groupId}</groupId>
  59. <artifactId>supplier-client</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.jwipc</groupId>
  63. <artifactId>sys-logic</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>${parent.groupId}</groupId>
  67. <artifactId>jwipc-log</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>${parent.groupId}</groupId>
  71. <artifactId>spe-client</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.jwipc</groupId>
  75. <artifactId>finance-api</artifactId>
  76. </dependency>
  77. </dependencies>
  78. </project>