pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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>rock-star-idea</artifactId>
  7. <groupId>rock.star.idea</groupId>
  8. <version>0.1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>pro-search</artifactId>
  12. <packaging>jar</packaging>
  13. <dependencies>
  14. <!-- 工程依赖 -->
  15. <dependency>
  16. <groupId>com.rockstar.anticontrol</groupId>
  17. <artifactId>rock-frame</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.rockstar.anticontrol</groupId>
  21. <artifactId>rock-system</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>rock.star.idea</groupId>
  25. <artifactId>pro-base</artifactId>
  26. </dependency>
  27. <!--spring-boot依赖-->
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-devtools</artifactId>
  31. <scope>runtime</scope>
  32. <optional>true</optional>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-configuration-processor</artifactId>
  37. <optional>true</optional>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-test</artifactId>
  42. <scope>test</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.apache.httpcomponents</groupId>
  46. <artifactId>httpmime</artifactId>
  47. </dependency>
  48. <!-- pageHelper -->
  49. <dependency>
  50. <groupId>com.github.pagehelper</groupId>
  51. <artifactId>pagehelper</artifactId>
  52. <version>${pagehelper.version}</version>
  53. </dependency>
  54. <!-- elasticsearch -->
  55. <dependency>
  56. <groupId>org.springframework.data</groupId>
  57. <artifactId>spring-data-elasticsearch</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.jetbrains</groupId>
  65. <artifactId>annotations</artifactId>
  66. <version>RELEASE</version>
  67. <scope>test</scope>
  68. </dependency>
  69. <!--消息队列的依赖-->
  70. <dependency>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-starter-amqp</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>javax.persistence</groupId>
  76. <artifactId>persistence-api</artifactId>
  77. <version>1.0</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.alibaba</groupId>
  81. <artifactId>fastjson</artifactId>
  82. <version>1.2.58</version>
  83. <scope>compile</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.projectlombok</groupId>
  87. <artifactId>lombok</artifactId>
  88. <version>1.18.2</version>
  89. </dependency>
  90. <!-- 通用Mapper -->
  91. <!-- <dependency>-->
  92. <!-- <groupId>tk.mybatis</groupId>-->
  93. <!-- <artifactId>mapper</artifactId>-->
  94. <!-- <version>4.0.4</version>-->
  95. <!-- </dependency>-->
  96. <!-- <dependency>-->
  97. <!-- <groupId>tk.mybatis</groupId>-->
  98. <!-- <artifactId>mapper-spring-boot-starter</artifactId>-->
  99. <!-- <version>2.0.4</version>-->
  100. <!-- </dependency>-->
  101. <dependency>
  102. <groupId>mysql</groupId>
  103. <artifactId>mysql-connector-java</artifactId>
  104. <version>5.1.45</version>
  105. </dependency>
  106. </dependencies>
  107. <build>
  108. <plugins>
  109. <plugin>
  110. <groupId>org.springframework.boot</groupId>
  111. <artifactId>spring-boot-maven-plugin</artifactId>
  112. </plugin>
  113. </plugins>
  114. </build>
  115. </project>