拓恒机场统一管理平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.7KB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <!-- 子模块的parent要使用顶层的父模块-->
  6. <parent>
  7. <artifactId>tuoheng</artifactId>
  8. <groupId>com.tuoheng</groupId>
  9. <version>0.0.1-SNAPSHOT</version>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>tuoheng-system</artifactId>
  13. <packaging>jar</packaging>
  14. <name>tuoheng-system</name>
  15. <description>Demo project for Spring Boot</description>
  16. <!-- 依赖声明 -->
  17. <dependencies>
  18. <!-- 引入子模块依赖 -->
  19. <dependency>
  20. <groupId>com.tuoheng</groupId>
  21. <artifactId>tuoheng-common</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.projectlombok</groupId>
  25. <artifactId>lombok</artifactId>
  26. <optional>true</optional>
  27. </dependency>
  28. <!-- Shiro 核心依赖 -->
  29. <dependency>
  30. <groupId>org.apache.shiro</groupId>
  31. <artifactId>shiro-spring</artifactId>
  32. <version>1.4.0</version>
  33. </dependency>
  34. <!-- Shiro-redis插件 -->
  35. <dependency>
  36. <groupId>org.crazycake</groupId>
  37. <artifactId>shiro-redis</artifactId>
  38. <version>3.2.3</version>
  39. </dependency>
  40. <!-- 引入阿里数据库连接池 -->
  41. <dependency>
  42. <groupId>com.alibaba</groupId>
  43. <artifactId>druid-spring-boot-starter</artifactId>
  44. <version>1.1.10</version>
  45. </dependency>
  46. </dependencies>
  47. </project>