pom.xml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.jwipc</groupId>
  8. <artifactId>finance</artifactId>
  9. <version>0.0.1-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>finance-logic</artifactId>
  12. <name>${project.artifactId}</name>
  13. <dependencies>
  14. <dependency>
  15. <groupId>${parent.groupId}</groupId>
  16. <artifactId>jwipc-web</artifactId>
  17. <scope>provided</scope>
  18. </dependency>
  19. <dependency>
  20. <groupId>${parent.groupId}</groupId>
  21. <artifactId>jwipc-util</artifactId>
  22. <scope>provided</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>${parent.groupId}</groupId>
  26. <artifactId>finance-infra</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>io.woo</groupId>
  30. <artifactId>htmltopdf</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.itextpdf</groupId>
  34. <artifactId>html2pdf</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.itextpdf</groupId>
  38. <artifactId>itextpdf</artifactId>
  39. </dependency>
  40. <!-- iText的字体集 -->
  41. <dependency>
  42. <groupId>com.itextpdf</groupId>
  43. <artifactId>itext-asian</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>${parent.groupId}</groupId>
  47. <artifactId>finance-client-base</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>${parent.groupId}</groupId>
  51. <artifactId>sys-client</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>${parent.groupId}</groupId>
  55. <artifactId>contract-client</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.jwipc</groupId>
  59. <artifactId>po-order-client-base</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.jwipc</groupId>
  63. <artifactId>po-order-client</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.jwipc</groupId>
  67. <artifactId>jwipc-log</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.jwipc</groupId>
  71. <artifactId>supplier-client</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.jwipc</groupId>
  75. <artifactId>jwipc-api</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.jwipc</groupId>
  79. <artifactId>sys-logic</artifactId>
  80. </dependency>
  81. </dependencies>
  82. </project>