pom.xml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>jay-monitor-data-server</artifactId>
  12. <properties>
  13. <!-- <thymeleaf.version>3.0.11.RELEASE</thymeleaf.version>-->
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.jay.monitor.data</groupId>
  18. <artifactId>jay-monitor-data-api</artifactId>
  19. <version>${project.version}</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.cat.file.message</groupId>
  23. <artifactId>spring-cat-file</artifactId>
  24. <version>1.0-SNAPSHOT</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.apache.commons</groupId>
  28. <artifactId>commons-lang3</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.jay.monitor.data</groupId>
  32. <artifactId>jay-monitor-data-core</artifactId>
  33. <version>${project.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-logging</artifactId>
  38. </dependency>
  39. <!-- <dependency>-->
  40. <!-- <groupId>com.elab.marketing</groupId>-->
  41. <!-- <artifactId>elab-marketing-core</artifactId>-->
  42. <!-- </dependency>-->
  43. <!-- spring boot web -->
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-web</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>nz.net.ultraq.thymeleaf</groupId>
  54. <artifactId>thymeleaf-layout-dialect</artifactId>
  55. <version>2.3.0</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.github.xiaoymin</groupId>
  59. <artifactId>swagger-bootstrap-ui</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework</groupId>
  63. <artifactId>spring-test</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-starter-test</artifactId>
  68. <scope>test</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-configuration-processor</artifactId>
  73. <optional>true</optional>
  74. </dependency>
  75. <!-- <dependency>-->
  76. <!-- <groupId>org.springframework.cloud</groupId>-->
  77. <!-- <artifactId>spring-cloud-starter-eureka</artifactId>-->
  78. <!-- <version>1.4.7.RELEASE</version>-->
  79. <!-- </dependency>-->
  80. <!-- <dependency>-->
  81. <!-- <groupId>org.springframework.cloud</groupId>-->
  82. <!-- <artifactId>spring-cloud-starter</artifactId>-->
  83. <!-- <version>2.1.3.RELEASE</version>-->
  84. <!-- </dependency>-->
  85. <!-- <dependency>-->
  86. <!-- <groupId>org.mybatis.spring.boot</groupId>-->
  87. <!-- <artifactId>mybatis-spring-boot-starter</artifactId>-->
  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. <dependency>
  99. <groupId>org.springframework.boot</groupId>
  100. <artifactId>spring-boot-starter-quartz</artifactId>
  101. </dependency>
  102. <!-- <dependency>-->
  103. <!-- <groupId>org.mybatis.caches</groupId>-->
  104. <!-- <artifactId>mybatis-ehcache</artifactId>-->
  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. <resources>
  115. <resource>
  116. <directory>src/main/resources</directory>
  117. <filtering>true</filtering>
  118. <excludes>
  119. <exclude>**/*.woff</exclude>
  120. <exclude>**/*.woff2</exclude>
  121. <exclude>**/*.ttf</exclude>
  122. </excludes>
  123. </resource>
  124. <resource>
  125. <directory>src/main/resources</directory>
  126. <filtering>false</filtering>
  127. <includes>
  128. <include>**/*.woff</include>
  129. <include>**/*.woff2</include>
  130. <include>**/*.ttf</include>
  131. </includes>
  132. </resource>
  133. </resources>
  134. </build>
  135. </project>