pom.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <!--父工程信息-->
  5. <parent>
  6. <groupId>com.shkpr</groupId>
  7. <artifactId>iot-common</artifactId>
  8. <version>0.0.1-dev</version>
  9. </parent>
  10. <!--项目名-->
  11. <artifactId>iot-common-auth</artifactId>
  12. <!--项目显示名-->
  13. <name>iot-common-auth</name>
  14. <!--项目描述-->
  15. <description>科普睿物联网平台-通用认证模块</description>
  16. <!--打包类型-->
  17. <packaging>jar</packaging>
  18. <!--版本号-->
  19. <version>0.0.1-dev</version>
  20. <!--项目依赖-->
  21. <dependencies>
  22. <!--核心包-->
  23. <dependency>
  24. <groupId>com.shkpr</groupId>
  25. <artifactId>iot-common-core</artifactId>
  26. <version>${iot.common.version}</version>
  27. </dependency>
  28. <!--spring-security-->
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-security</artifactId>
  32. </dependency>
  33. <!--mybatis-->
  34. <dependency>
  35. <groupId>org.mybatis.spring.boot</groupId>
  36. <artifactId>mybatis-spring-boot-starter</artifactId>
  37. <version>${mybatis.spring.version}</version>
  38. </dependency>
  39. <!--jjwt-->
  40. <dependency>
  41. <groupId>io.jsonwebtoken</groupId>
  42. <artifactId>jjwt</artifactId>
  43. <version>${jjwt.version}</version>
  44. </dependency>
  45. <!--commons-rng-->
  46. <dependency>
  47. <groupId>org.apache.commons</groupId>
  48. <artifactId>commons-rng-simple</artifactId>
  49. <version>${commons.rng.version}</version>
  50. </dependency>
  51. <!--easy-captcha-->
  52. <dependency>
  53. <groupId>com.pig4cloud.plugin</groupId>
  54. <artifactId>captcha-core</artifactId>
  55. <version>2.2.2</version>
  56. </dependency>
  57. </dependencies>
  58. </project>