| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?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>
- <artifactId>shoppingMall</artifactId>
- <groupId>com.jwipc</groupId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>shoppingMall-infra</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-infra</artifactId>
- </dependency>
- <dependency>
- <groupId>com.alibaba.fastjson2</groupId>
- <artifactId>fastjson2</artifactId>
- </dependency>
- <dependency>
- <groupId>joda-time</groupId>
- <artifactId>joda-time</artifactId>
- <version>2.9.6</version>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>commons-net</groupId>-->
- <!-- <artifactId>commons-net</artifactId>-->
- <!-- <version>3.5</version>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>fluent-hc</artifactId>
- <version>4.3.5</version>
- </dependency>
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- <version>4.5.3</version>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>com.jwipc</groupId>-->
- <!-- <artifactId>inquiry-client</artifactId>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>javax.servlet</groupId>-->
- <!-- <artifactId>javax.servlet-api</artifactId>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>org.apache.poi</groupId>-->
- <!-- <artifactId>poi</artifactId>-->
- <!-- <version>4.1.2</version>-->
- <!-- </dependency>-->
- </dependencies>
- </project>
|