12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns="http://maven.apache.org/POM/4.0.0"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <groupId>com.github.zuihou</groupId>
- <artifactId>imcs-admin-boot</artifactId>
- <version>b.2.5-SNAPSHOT</version>
- <relativePath>../</relativePath>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>imcs-tenant-biz</artifactId>
- <name>${project.artifactId}</name>
- <description>租户服务业务模块</description>
- <dependencies>
- <dependency>
- <groupId>com.github.zuihou</groupId>
- <artifactId>imcs-tenant-entity</artifactId>
- <version>${imcs-project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.github.zuihou</groupId>
- <artifactId>imcs-authority-biz</artifactId>
- <version>${imcs-project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.github.zuihou</groupId>
- <artifactId>zuihou-mq-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>com.github.zuihou</groupId>
- <artifactId>zuihou-databases</artifactId>
- </dependency>
- <dependency>
- <groupId>com.github.zuihou</groupId>
- <artifactId>zuihou-j2cache-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>com.github.zuihou</groupId>
- <artifactId>zuihou-dozer-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>com.github.zuihou</groupId>
- <artifactId>zuihou-boot</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus</artifactId>
- <version>3.4.0</version>
- </dependency>
- <dependency>
- <groupId>net.bytebuddy</groupId>
- <artifactId>byte-buddy-agent</artifactId>
- <version>RELEASE</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- <version>4.5.2</version>
- </dependency>
- </dependencies>
- </project>
|