pom.xml 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  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.jay.monitor.data</groupId>
  7. <artifactId>jay-monitor-data-web</artifactId>
  8. <packaging>pom</packaging>
  9. <version>1.0-SNAPSHOT</version>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>2.1.3.RELEASE</version>
  14. <relativePath/> <!-- lookup parent from repository -->
  15. </parent>
  16. <modules>
  17. <module>jay-monitor-data-api</module>
  18. <module>jay-monitor-data-server</module>
  19. <module>jay-monitor-data-client</module>
  20. <module>jay-monitor-data-core</module>
  21. </modules>
  22. <properties>
  23. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  24. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  25. <java.version>1.8</java.version>
  26. <elab.version>2.0.4.10-SNAPSHOT</elab.version>
  27. <skipTests>true</skipTests>
  28. <protostuff.version>1.6.0</protostuff.version>
  29. <mybatis-plus-boot-starter.version>3.2.0</mybatis-plus-boot-starter.version>
  30. <mybatis-spring-boot-starter.version>1.3.2</mybatis-spring-boot-starter.version>
  31. <mybatis.ehcache.version>1.1.0</mybatis.ehcache.version>
  32. </properties>
  33. <dependencyManagement>
  34. <dependencies>
  35. <dependency>
  36. <groupId>com.alipay.sofa</groupId>
  37. <artifactId>hessian</artifactId>
  38. <version>3.3.6</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.alipay.sofa</groupId>
  42. <artifactId>bolt</artifactId>
  43. <version>1.6.2</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.alipay.sofa.common</groupId>
  47. <artifactId>sofa-common-tools</artifactId>
  48. <version>1.0.12</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.github.xiaoymin</groupId>
  52. <artifactId>swagger-bootstrap-ui</artifactId>
  53. <version>1.7.3.1</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>io.netty</groupId>
  57. <artifactId>netty-all</artifactId>
  58. <version>4.1.30.Final</version>
  59. </dependency>
  60. <!-- 数据传输序列化的包 -->
  61. <dependency>
  62. <groupId>io.protostuff</groupId>
  63. <artifactId>protostuff-core</artifactId>
  64. <version>${protostuff.version}</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>io.protostuff</groupId>
  68. <artifactId>protostuff-runtime</artifactId>
  69. <version>${protostuff.version}</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.slf4j</groupId>
  73. <artifactId>slf4j-api</artifactId>
  74. <version>1.7.25</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.slf4j</groupId>
  78. <artifactId>slf4j-log4j12</artifactId>
  79. <version>1.7.25</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>ch.qos.logback</groupId>
  83. <artifactId>logback-classic</artifactId>
  84. <version>1.2.3</version>
  85. <!--<scope>provided</scope>-->
  86. </dependency>
  87. <dependency>
  88. <groupId>com.alibaba</groupId>
  89. <artifactId>druid</artifactId>
  90. <version>1.1.10</version>
  91. </dependency>
  92. <!-- mybatis 依赖 -->
  93. <!-- <dependency>-->
  94. <!-- <groupId>org.mybatis.spring.boot</groupId>-->
  95. <!-- <artifactId>mybatis-spring-boot-starter</artifactId>-->
  96. <!-- <version>${mybatis-spring-boot-starter.version}</version>-->
  97. <!-- </dependency>-->
  98. <dependency>
  99. <groupId>com.baomidou</groupId>
  100. <artifactId>mybatis-plus-boot-starter</artifactId>
  101. <version>${mybatis-plus-boot-starter.version}</version>
  102. </dependency>
  103. <!-- <dependency>-->
  104. <!-- <groupId>org.mybatis.caches</groupId>-->
  105. <!-- <artifactId>mybatis-ehcache</artifactId>-->
  106. <!-- <version>${mybatis.ehcache.version}</version>-->
  107. <!-- </dependency>-->
  108. <dependency>
  109. <groupId>com.alibaba</groupId>
  110. <artifactId>fastjson</artifactId>
  111. <version>1.2.55</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.xiaoleilu</groupId>
  115. <artifactId>hutool-all</artifactId>
  116. <version>3.2.0</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>commons-beanutils</groupId>
  120. <artifactId>commons-beanutils</artifactId>
  121. <version>1.9.3</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.apache.commons</groupId>
  125. <artifactId>commons-lang3</artifactId>
  126. <version>3.8.1</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>com.netflix.zuul</groupId>
  130. <artifactId>zuul-core</artifactId>
  131. <version>1.3.1</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>commons-io</groupId>
  135. <artifactId>commons-io</artifactId>
  136. <version>2.6</version>
  137. </dependency>
  138. </dependencies>
  139. </dependencyManagement>
  140. </project>