| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.jwipc</groupId>
- <artifactId>finance</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <artifactId>finance-logic</artifactId>
- <name>${project.artifactId}</name>
- <dependencies>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>jwipc-web</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>jwipc-util</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>finance-infra</artifactId>
- </dependency>
- <dependency>
- <groupId>io.woo</groupId>
- <artifactId>htmltopdf</artifactId>
- </dependency>
- <dependency>
- <groupId>com.itextpdf</groupId>
- <artifactId>html2pdf</artifactId>
- </dependency>
- <dependency>
- <groupId>com.itextpdf</groupId>
- <artifactId>itextpdf</artifactId>
- </dependency>
- <!-- iText的字体集 -->
- <dependency>
- <groupId>com.itextpdf</groupId>
- <artifactId>itext-asian</artifactId>
- </dependency>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>finance-client-base</artifactId>
- </dependency>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>sys-client</artifactId>
- </dependency>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>contract-client</artifactId>
- </dependency>
- <dependency>
- <groupId>com.jwipc</groupId>
- <artifactId>po-order-client-base</artifactId>
- </dependency>
- <dependency>
- <groupId>com.jwipc</groupId>
- <artifactId>po-order-client</artifactId>
- </dependency>
- <dependency>
- <groupId>com.jwipc</groupId>
- <artifactId>jwipc-log</artifactId>
- </dependency>
- <dependency>
- <groupId>com.jwipc</groupId>
- <artifactId>supplier-client</artifactId>
- </dependency>
- <dependency>
- <groupId>com.jwipc</groupId>
- <artifactId>jwipc-api</artifactId>
- </dependency>
- <dependency>
- <groupId>com.jwipc</groupId>
- <artifactId>sys-logic</artifactId>
- </dependency>
- </dependencies>
- </project>
|