123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <?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-authority-biz</artifactId>
- <name>${project.artifactId}</name>
- <description>权限服务业务模块</description>
- <dependencies>
- <dependency>
- <groupId>com.github.zuihou</groupId>
- <artifactId>imcs-authority-entity</artifactId>
- <version>${imcs-project.version}</version>
- </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>
- <!-- user 只有权限服务 放在biz 层 -->
- <dependency>
- <groupId>com.github.zuihou</groupId>
- <artifactId>zuihou-security-starter</artifactId>
- </dependency>
- <!-- log 只有权限服务biz模块引用,其他服务都在controller模块 -->
- <dependency>
- <groupId>com.github.zuihou</groupId>
- <artifactId>zuihou-log-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus</artifactId>
- </dependency>
- <!-- @RefreshScope 需要使用 -->
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-context</artifactId>
- </dependency>
- <dependency>
- <groupId>commons-httpclient</groupId>
- <artifactId>commons-httpclient</artifactId>
- <version>3.1</version>
- </dependency>
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- <version>4.3.1</version>
- </dependency>
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpcore</artifactId>
- <version>4.3.1</version>
- </dependency>
- </dependencies>
- </project>
|