pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.xunwang</groupId>
  7. <artifactId>education_family</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>service</artifactId>
  11. <packaging>pom</packaging>
  12. <modules>
  13. <module>service-education</module>
  14. <module>service-ucenter</module>
  15. <module>service-file</module>
  16. </modules>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.xunwang</groupId>
  20. <artifactId>service_base</artifactId>
  21. <version>0.0.1-SNAPSHOT</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.alibaba.cloud</groupId>
  25. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-web</artifactId>
  30. </dependency>
  31. <!--mybatis-plus-->
  32. <dependency>
  33. <groupId>com.baomidou</groupId>
  34. <artifactId>mybatis-plus-boot-starter</artifactId>
  35. </dependency>
  36. <!--mysql-->
  37. <dependency>
  38. <groupId>mysql</groupId>
  39. <artifactId>mysql-connector-java</artifactId>
  40. <version>8.0.19</version>
  41. </dependency>
  42. <!-- velocity 模板引擎, Mybatis Plus 代码生成器需要 -->
  43. <dependency>
  44. <groupId>org.apache.velocity</groupId>
  45. <artifactId>velocity-engine-core</artifactId>
  46. </dependency>
  47. <!--已经包含swagger-->
  48. <dependency>
  49. <groupId>com.github.xiaoymin</groupId>
  50. <artifactId>knife4j-spring-boot-starter</artifactId>
  51. </dependency>
  52. <!--lombok用来简化实体类:需要安装lombok插件-->
  53. <dependency>
  54. <groupId>org.projectlombok</groupId>
  55. <artifactId>lombok</artifactId>
  56. </dependency>
  57. <!--httpclient-->
  58. <dependency>
  59. <groupId>org.apache.httpcomponents</groupId>
  60. <artifactId>httpclient</artifactId>
  61. </dependency>
  62. <!--commons-io-->
  63. <dependency>
  64. <groupId>commons-io</groupId>
  65. <artifactId>commons-io</artifactId>
  66. </dependency>
  67. <!--gson-->
  68. <dependency>
  69. <groupId>com.google.code.gson</groupId>
  70. <artifactId>gson</artifactId>
  71. </dependency>
  72. <!--redis-->
  73. <dependency>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-starter-data-redis</artifactId>
  76. </dependency>
  77. <!--redis连接池信息-->
  78. <dependency>
  79. <groupId>org.apache.commons</groupId>
  80. <artifactId>commons-pool2</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>junit</groupId>
  84. <artifactId>junit</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>javax.xml.bind</groupId>
  88. <artifactId>jaxb-api</artifactId>
  89. <version>2.3.0</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.sun.xml.bind</groupId>
  93. <artifactId>jaxb-impl</artifactId>
  94. <version>2.3.0</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.sun.xml.bind</groupId>
  98. <artifactId>jaxb-core</artifactId>
  99. <version>2.3.0</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>javax.activation</groupId>
  103. <artifactId>activation</artifactId>
  104. <version>1.1.1</version>
  105. </dependency>
  106. </dependencies>
  107. <build>
  108. <resources>
  109. <resource>
  110. <directory>src/main/java</directory>
  111. <includes>
  112. <include>**/*.xml</include>
  113. </includes>
  114. <filtering>false</filtering>
  115. </resource>
  116. </resources>
  117. </build>
  118. </project>