pom.xml 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. <artifactId>project-service</artifactId>
  7. <groupId>com.project</groupId>
  8. <version>3.8.3</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>project-framework</artifactId>
  12. <description>
  13. framework框架核心
  14. </description>
  15. <dependencies>
  16. <!-- SpringBoot Web容器 -->
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-web</artifactId>
  20. <!--打包的的时候排除tomcat包-->
  21. <!-- <exclusions>-->
  22. <!-- <exclusion>-->
  23. <!-- <groupId>org.springframework.boot</groupId>-->
  24. <!-- <artifactId>spring-boot-starter-tomcat</artifactId>-->
  25. <!-- </exclusion>-->
  26. <!-- </exclusions>-->
  27. </dependency>
  28. <!-- SpringBoot 拦截器 -->
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-aop</artifactId>
  32. </dependency>
  33. <!-- 阿里数据库连接池 -->
  34. <dependency>
  35. <groupId>com.alibaba</groupId>
  36. <artifactId>druid-spring-boot-starter</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>sgcc.nds</groupId>
  40. <artifactId>sgjdbc</artifactId>
  41. <version>4.3.21.1</version>
  42. <scope>system</scope>
  43. <systemPath>${pom.basedir}/lib/sgjdbc-V4.3.21.1-build-20220215.2653.jar</systemPath>
  44. </dependency>
  45. <!-- 验证码 -->
  46. <dependency>
  47. <groupId>com.github.penggle</groupId>
  48. <artifactId>kaptcha</artifactId>
  49. <exclusions>
  50. <exclusion>
  51. <artifactId>javax.servlet-api</artifactId>
  52. <groupId>javax.servlet</groupId>
  53. </exclusion>
  54. </exclusions>
  55. </dependency>
  56. <!-- 获取系统信息 -->
  57. <dependency>
  58. <groupId>com.github.oshi</groupId>
  59. <artifactId>oshi-core</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>cn.hutool</groupId>
  63. <artifactId>hutool-all</artifactId>
  64. </dependency>
  65. <!-- 系统模块-->
  66. <dependency>
  67. <groupId>com.project</groupId>
  68. <artifactId>project-system</artifactId>
  69. </dependency>
  70. <!-- 自定义模块-->
  71. <dependency>
  72. <groupId>com.project</groupId>
  73. <artifactId>project-zcustom</artifactId>
  74. </dependency>
  75. </dependencies>
  76. </project>