javademo

pom.xml 2.0KB

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