123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <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">
- <modelVersion>4.0.0</modelVersion>
- <!--父工程信息-->
- <parent>
- <groupId>com.shkpr</groupId>
- <artifactId>iot-common</artifactId>
- <version>0.0.1-dev</version>
- </parent>
- <!--项目名-->
- <artifactId>iot-common-auth</artifactId>
- <!--项目显示名-->
- <name>iot-common-auth</name>
- <!--项目描述-->
- <description>科普睿物联网平台-通用认证模块</description>
- <!--打包类型-->
- <packaging>jar</packaging>
- <!--版本号-->
- <version>0.0.1-dev</version>
- <!--项目依赖-->
- <dependencies>
- <!--核心包-->
- <dependency>
- <groupId>com.shkpr</groupId>
- <artifactId>iot-common-core</artifactId>
- <version>${iot.common.version}</version>
- </dependency>
- <!--spring-security-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-security</artifactId>
- </dependency>
- <!--mybatis-->
- <dependency>
- <groupId>org.mybatis.spring.boot</groupId>
- <artifactId>mybatis-spring-boot-starter</artifactId>
- <version>${mybatis.spring.version}</version>
- </dependency>
- <!--jjwt-->
- <dependency>
- <groupId>io.jsonwebtoken</groupId>
- <artifactId>jjwt</artifactId>
- <version>${jjwt.version}</version>
- </dependency>
- <!--commons-rng-->
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-rng-simple</artifactId>
- <version>${commons.rng.version}</version>
- </dependency>
- <!--easy-captcha-->
- <dependency>
- <groupId>com.pig4cloud.plugin</groupId>
- <artifactId>captcha-core</artifactId>
- <version>2.2.2</version>
- </dependency>
- </dependencies>
- </project>
|