|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?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>bjair</artifactId>
- <groupId>com.iformall</groupId>
- <version>1.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
-
- <artifactId>bjairService</artifactId>
-
- <dependencies>
- <!--
- <dependency>
- <groupId>com.iformall</groupId>
- <artifactId>mybatis-tenant</artifactId>
- <version>1.0</version>
- <scope>compile</scope>
- </dependency>
- -->
- <dependency>
- <groupId>com.iformall</groupId>
- <artifactId>bjair-swagger</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>net.sf.dozer</groupId>
- <artifactId>dozer</artifactId>
- <version>5.5.1</version>
- </dependency>
- <dependency>
- <groupId>com.aliyun.openservices</groupId>
- <artifactId>ons-client</artifactId>
- <version>1.8.4.Final</version>
- </dependency>
- <dependency>
- <groupId>com.iformall</groupId>
- <artifactId>bjair-mybatis</artifactId>
- <version>1.0</version>
- </dependency>
-
- <dependency>
- <groupId>com.alipay.sdk</groupId>
- <artifactId>alipay-sdk-java</artifactId>
- <version>4.38.98.ALL</version>
- </dependency>
-
- <dependency>
- <groupId>org.jsoup</groupId>
- <artifactId>jsoup</artifactId>
- <version>1.10.2</version>
- </dependency>
-
- <dependency>
- <groupId>io.netty</groupId>
- <artifactId>netty-all</artifactId>
- <version>4.1.68.Final</version>
- <!-- 使用适合你项目的版本 -->
- </dependency>
- </dependencies>
-
- </project>
|