| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?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">
- <parent>
- <groupId>com.jwipc</groupId>
- <artifactId>po-order</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>po-order-logic</artifactId>
- <name>${project.artifactId}</name>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <scope>test</scope>
- </dependency>
- <!-- itext7html转pdf -->
- <dependency>
- <groupId>com.itextpdf</groupId>
- <artifactId>html2pdf</artifactId>
- <!-- <version>3.0.2</version>-->
- </dependency>
- <!-- 中文字体支持 -->
- <dependency>
- <groupId>com.itextpdf</groupId>
- <artifactId>itext-asian</artifactId>
- <!-- <version>7.1.13</version>-->
- </dependency>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>jwipc-web</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>po-order-infra</artifactId>
- </dependency>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>sys-client</artifactId>
- </dependency>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>jwipc-api</artifactId>
- </dependency>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>tender-client</artifactId>
- </dependency>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>supplier-client</artifactId>
- </dependency>
- <dependency>
- <groupId>com.jwipc</groupId>
- <artifactId>sys-logic</artifactId>
- </dependency>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>jwipc-log</artifactId>
- </dependency>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>spe-client</artifactId>
- </dependency>
- <dependency>
- <groupId>com.jwipc</groupId>
- <artifactId>finance-api</artifactId>
- </dependency>
- </dependencies>
- </project>
|