pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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>org.apache.commons</groupId>
  23. <artifactId>commons-lang3</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.jay.monitor.data</groupId>
  27. <artifactId>jay-monitor-data-core</artifactId>
  28. <version>${project.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-logging</artifactId>
  33. </dependency>
  34. <!-- <dependency>-->
  35. <!-- <groupId>com.elab.marketing</groupId>-->
  36. <!-- <artifactId>elab-marketing-core</artifactId>-->
  37. <!-- </dependency>-->
  38. <!-- spring boot web -->
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-web</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>nz.net.ultraq.thymeleaf</groupId>
  49. <artifactId>thymeleaf-layout-dialect</artifactId>
  50. <version>2.3.0</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.github.xiaoymin</groupId>
  54. <artifactId>swagger-bootstrap-ui</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework</groupId>
  58. <artifactId>spring-test</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-test</artifactId>
  63. <scope>test</scope>
  64. </dependency>
  65. <!-- <dependency>-->
  66. <!-- <groupId>org.springframework.cloud</groupId>-->
  67. <!-- <artifactId>spring-cloud-starter-eureka</artifactId>-->
  68. <!-- <version>1.4.7.RELEASE</version>-->
  69. <!-- </dependency>-->
  70. <!-- <dependency>-->
  71. <!-- <groupId>org.springframework.cloud</groupId>-->
  72. <!-- <artifactId>spring-cloud-starter</artifactId>-->
  73. <!-- <version>2.1.3.RELEASE</version>-->
  74. <!-- </dependency>-->
  75. <!-- <dependency>-->
  76. <!-- <groupId>org.mybatis.spring.boot</groupId>-->
  77. <!-- <artifactId>mybatis-spring-boot-starter</artifactId>-->
  78. <!-- </dependency>-->
  79. <dependency>
  80. <groupId>mysql</groupId>
  81. <artifactId>mysql-connector-java</artifactId>
  82. <version>5.1.47</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.baomidou</groupId>
  86. <artifactId>mybatis-plus-boot-starter</artifactId>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.springframework.boot</groupId>
  90. <artifactId>spring-boot-starter-quartz</artifactId>
  91. </dependency>
  92. <!-- <dependency>-->
  93. <!-- <groupId>org.mybatis.caches</groupId>-->
  94. <!-- <artifactId>mybatis-ehcache</artifactId>-->
  95. <!-- </dependency>-->
  96. </dependencies>
  97. <build>
  98. <plugins>
  99. <plugin>
  100. <groupId>org.springframework.boot</groupId>
  101. <artifactId>spring-boot-maven-plugin</artifactId>
  102. </plugin>
  103. </plugins>
  104. <resources>
  105. <resource>
  106. <directory>src/main/resources</directory>
  107. <filtering>true</filtering>
  108. <excludes>
  109. <exclude>**/*.woff</exclude>
  110. <exclude>**/*.woff2</exclude>
  111. <exclude>**/*.ttf</exclude>
  112. </excludes>
  113. </resource>
  114. <resource>
  115. <directory>src/main/resources</directory>
  116. <filtering>false</filtering>
  117. <includes>
  118. <include>**/*.woff</include>
  119. <include>**/*.woff2</include>
  120. <include>**/*.ttf</include>
  121. </includes>
  122. </resource>
  123. </resources>
  124. </build>
  125. </project>