pom.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. <groupId>com.ozs</groupId>
  7. <artifactId>purchase</artifactId>
  8. <version>1.0.0</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>purchase-framework</artifactId>
  13. <description>
  14. framework框架核心
  15. </description>
  16. <dependencies>
  17. <!-- SpringBoot Web容器 -->
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-web</artifactId>
  21. </dependency>
  22. <!-- SpringBoot 拦截器 -->
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-aop</artifactId>
  26. </dependency>
  27. <!-- 阿里数据库连接池 -->
  28. <dependency>
  29. <groupId>com.alibaba</groupId>
  30. <artifactId>druid-spring-boot-starter</artifactId>
  31. </dependency>
  32. <!-- 验证码 -->
  33. <dependency>
  34. <groupId>pro.fessional</groupId>
  35. <artifactId>kaptcha</artifactId>
  36. <exclusions>
  37. <exclusion>
  38. <artifactId>javax.servlet-api</artifactId>
  39. <groupId>javax.servlet</groupId>
  40. </exclusion>
  41. </exclusions>
  42. </dependency>
  43. <!-- 获取系统信息 -->
  44. <dependency>
  45. <groupId>com.github.oshi</groupId>
  46. <artifactId>oshi-core</artifactId>
  47. </dependency>
  48. <!-- 系统模块-->
  49. <dependency>
  50. <groupId>com.ozs</groupId>
  51. <artifactId>purchase-system</artifactId>
  52. </dependency>
  53. </dependencies>
  54. </project>