pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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. <groupId>com.itheima</groupId>
  7. <artifactId>taotao-parent</artifactId>
  8. <packaging>pom</packaging>
  9. <version>1.0-SNAPSHOT</version>
  10. <modules>
  11. <module>../taotao-common</module>
  12. <module>../taotao-manager</module>
  13. <module>../taotao-manager-web</module>
  14. <module>../sziit-solr</module>
  15. <module>../taotao-portal</module>
  16. <!-- <module>../taotao-search</module>
  17. <module>../taotao-search-web</module>-->
  18. <module>../taotao-sso</module>
  19. <module>../taotao-sso-web</module>
  20. </modules>
  21. <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-parent -->
  22. <parent>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-parent</artifactId>
  25. <version>2.3.3.RELEASE</version>
  26. </parent>
  27. <dependencies>
  28. <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web -->
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-web</artifactId>
  32. <version>2.3.6.RELEASE</version>
  33. </dependency>
  34. <!--2. 添加dubbo的依赖-->
  35. <!--3.添加zookeeper的依赖-->
  36. <!-- dubbo的依赖 -->
  37. <dependency>
  38. <groupId>org.apache.dubbo</groupId>
  39. <artifactId>dubbo-spring-boot-starter</artifactId>
  40. <version>2.7.6</version>
  41. </dependency>
  42. <!-- zk的依赖 -->
  43. <dependency>
  44. <groupId>org.apache.dubbo</groupId>
  45. <artifactId>dubbo-dependencies-zookeeper</artifactId>
  46. <version>2.7.6</version>
  47. <type>pom</type>
  48. <exclusions>
  49. <exclusion>
  50. <groupId>org.slf4j</groupId>
  51. <artifactId>slf4j-log4j12</artifactId>
  52. </exclusion>
  53. <exclusion>
  54. <artifactId>log4j</artifactId>
  55. <groupId>log4j</groupId>
  56. </exclusion>
  57. </exclusions>
  58. </dependency>
  59. <!-- MyBatis启动器 -->
  60. <!--<dependency>
  61. <groupId>org.mybatis.spring.boot</groupId>
  62. <artifactId>mybatis-spring-boot-starter</artifactId>
  63. <version>1.1.1</version>
  64. </dependency>-->
  65. <!-- https://mvnrepository.com/artifact/org.mybatis.spring.boot/mybatis-spring-boot-starter -->
  66. <!-- -->
  67. <dependency>
  68. <groupId>org.mybatis.spring.boot</groupId>
  69. <artifactId>mybatis-spring-boot-starter</artifactId>
  70. <version>2.1.0</version>
  71. </dependency>
  72. <!-- MySQL连接驱动 -->
  73. <dependency>
  74. <groupId>mysql</groupId>
  75. <artifactId>mysql-connector-java</artifactId>
  76. <version>8.0.15</version>
  77. </dependency>
  78. <!--这是通用mapper的依赖-->
  79. <dependency>
  80. <groupId>tk.mybatis</groupId>
  81. <artifactId>mapper-spring-boot-starter</artifactId>
  82. <version>2.1.5</version>
  83. <exclusions>
  84. <exclusion>
  85. <artifactId>mybatis</artifactId>
  86. <groupId>org.mybatis</groupId>
  87. </exclusion>
  88. <exclusion>
  89. <artifactId>mybatis-spring</artifactId>
  90. <groupId>org.mybatis</groupId>
  91. </exclusion>
  92. </exclusions>
  93. </dependency>
  94. <!--添加jsp的支持依赖-->
  95. <dependency>
  96. <groupId>javax.servlet</groupId>
  97. <artifactId>jstl</artifactId>
  98. <version>1.2</version>
  99. </dependency>
  100. <!-- 使用jsp引擎,springboot内置tomcat没有此依赖 -->
  101. <!-- https://mvnrepository.com/artifact/org.apache.tomcat.embed/tomcat-embed-jasper -->
  102. <!---->
  103. <dependency>
  104. <groupId>org.apache.tomcat.embed</groupId>
  105. <artifactId>tomcat-embed-jasper</artifactId>
  106. <version>9.0.39</version>
  107. </dependency>
  108. <!-- https://mvnrepository.com/artifact/com.github.pagehelper/pagehelper-spring-boot-starter -->
  109. <dependency>
  110. <groupId>com.github.pagehelper</groupId>
  111. <artifactId>pagehelper-spring-boot-starter</artifactId>
  112. <version>1.2.12</version>
  113. </dependency>
  114. <!--solr的依赖-->
  115. <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-data-solr -->
  116. <dependency>
  117. <groupId>org.springframework.boot</groupId>
  118. <artifactId>spring-boot-starter-data-solr</artifactId>
  119. <version>2.2.5.RELEASE</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>redis.clients</groupId>
  123. <artifactId>jedis</artifactId>
  124. <version>3.0.1</version>
  125. </dependency>
  126. </dependencies>
  127. </project>