pom.xml 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  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. <groupId>com.jay.monitor.data</groupId>
  7. <artifactId>jay-monitor-data-web</artifactId>
  8. <version>1.2-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>jay-monitor-data-server</artifactId>
  12. <properties>
  13. <elasticsearch.version>7.3.1</elasticsearch.version>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.ruoyi.avue</groupId>
  18. <artifactId>ruoyi-avue-client</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.jay.monitor.data</groupId>
  22. <artifactId>jay-monitor-data-api</artifactId>
  23. <version>${project.version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.cat.file.message</groupId>
  27. <artifactId>spring-cat-file</artifactId>
  28. <version>1.0-SNAPSHOT</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>cn.zxporz</groupId>
  32. <artifactId>esclientrhl</artifactId>
  33. <version>7.0.0</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.apache.commons</groupId>
  37. <artifactId>commons-lang3</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.jay.monitor.data</groupId>
  41. <artifactId>jay-monitor-data-core</artifactId>
  42. <version>${project.version}</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-logging</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>cn.hutool</groupId>
  50. <artifactId>hutool-all</artifactId>
  51. </dependency>
  52. <!-- spring boot web -->
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-web</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>nz.net.ultraq.thymeleaf</groupId>
  63. <artifactId>thymeleaf-layout-dialect</artifactId>
  64. <version>2.3.0</version>
  65. </dependency>
  66. <!-- <dependency>-->
  67. <!-- <groupId>com.github.xiaoymin</groupId>-->
  68. <!-- <artifactId>swagger-bootstrap-ui</artifactId>-->
  69. <!-- </dependency>-->
  70. <dependency>
  71. <groupId>org.springframework</groupId>
  72. <artifactId>spring-test</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-starter-test</artifactId>
  77. <scope>test</scope>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-configuration-processor</artifactId>
  82. <optional>true</optional>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.aliyun.oss</groupId>
  86. <artifactId>aliyun-sdk-oss</artifactId>
  87. <version>3.10.2</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>mysql</groupId>
  91. <artifactId>mysql-connector-java</artifactId>
  92. <version>5.1.47</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.baomidou</groupId>
  96. <artifactId>mybatis-plus-boot-starter</artifactId>
  97. </dependency>
  98. <!-- 请注意groupId和github的方式有一些区别哦 -->
  99. <!-- <dependency>-->
  100. <!-- <groupId>com.github.hui.media</groupId>-->
  101. <!-- <artifactId>markdown-plugin</artifactId>-->
  102. <!-- <version>2.5.2</version>-->
  103. <!-- </dependency>-->
  104. <!-- <dependency>-->
  105. <!-- <groupId>org.springframework.boot</groupId>-->
  106. <!-- <artifactId>spring-boot-starter-quartz</artifactId>-->
  107. <!-- </dependency>-->
  108. <!-- <dependency>-->
  109. <!-- <groupId>org.mybatis.caches</groupId>-->
  110. <!-- <artifactId>mybatis-ehcache</artifactId>-->
  111. <!-- </dependency>-->
  112. </dependencies>
  113. <build>
  114. <finalName>jay-monitor-data-server</finalName>
  115. <plugins>
  116. <plugin>
  117. <groupId>org.springframework.boot</groupId>
  118. <artifactId>spring-boot-maven-plugin</artifactId>
  119. </plugin>
  120. </plugins>
  121. <resources>
  122. <resource>
  123. <directory>src/main/resources</directory>
  124. <filtering>true</filtering>
  125. <excludes>
  126. <exclude>**/*.woff</exclude>
  127. <exclude>**/*.woff2</exclude>
  128. <exclude>**/*.ttf</exclude>
  129. <!-- <exclude>**/*.svg</exclude>-->
  130. </excludes>
  131. </resource>
  132. <resource>
  133. <directory>src/main/resources</directory>
  134. <filtering>false</filtering>
  135. <includes>
  136. <include>**/*.woff</include>
  137. <include>**/*.woff2</include>
  138. <include>**/*.ttf</include>
  139. <!-- <include>**/*.svg</include>-->
  140. </includes>
  141. </resource>
  142. </resources>
  143. </build>
  144. <!-- <repositories>-->
  145. <!-- <repository>-->
  146. <!-- <id>jitpack.io</id>-->
  147. <!-- <url>http://jitpack.io</url>-->
  148. <!-- </repository>-->
  149. <!-- <repository>-->
  150. <!-- <id>yihui-maven-repo</id>-->
  151. <!-- <url>https://raw.githubusercontent.com/liuyueyi/maven-repository/master/repository</url>-->
  152. <!-- </repository>-->
  153. <!-- &lt;!&ndash; <repository>&ndash;&gt;-->
  154. <!-- &lt;!&ndash; <id>yihui-maven-repo</id>&ndash;&gt;-->
  155. <!-- &lt;!&ndash; <url>https://raw.githubusercontent.com/liuyueyi/maven-repository/master/repository</url>&ndash;&gt;-->
  156. <!-- &lt;!&ndash; </repository>&ndash;&gt;-->
  157. <!-- </repositories>-->
  158. </project>