pom.xml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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-core</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.alipay.sofa</groupId>
  15. <artifactId>bolt</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.alipay.sofa.common</groupId>
  19. <artifactId>sofa-common-tools</artifactId>
  20. </dependency>
  21. <!-- 默认的序列化框架 -->
  22. <dependency>
  23. <groupId>com.alipay.sofa</groupId>
  24. <artifactId>hessian</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-web</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>io.netty</groupId>
  32. <artifactId>netty-all</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>io.protostuff</groupId>
  36. <artifactId>protostuff-core</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>io.protostuff</groupId>
  40. <artifactId>protostuff-runtime</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>commons-io</groupId>
  44. <artifactId>commons-io</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.alibaba</groupId>
  48. <artifactId>druid</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-test</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>junit</groupId>
  56. <artifactId>junit</artifactId>
  57. <version>4.12</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.alibaba</groupId>
  61. <artifactId>fastjson</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.xiaoleilu</groupId>
  65. <artifactId>hutool-all</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>commons-beanutils</groupId>
  69. <artifactId>commons-beanutils</artifactId>
  70. </dependency>
  71. </dependencies>
  72. </project>