pom.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.persagy</groupId>
  6. <artifactId>apm-package</artifactId>
  7. <version>v1.2.0-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>dmp-alarm</artifactId>
  10. <version>v1.0.0</version>
  11. <repositories>
  12. <repository>
  13. <id>snapshot</id>
  14. <name>snapshot Repository</name>
  15. <url>http://47.93.132.139:8081/nexus/content/repositories/snapshots/</url>
  16. <snapshots>
  17. <enabled>true</enabled>
  18. <updatePolicy>always</updatePolicy>
  19. </snapshots>
  20. </repository>
  21. <repository>
  22. <id>persagy</id>
  23. <name>persagy Repository</name>
  24. <url>http://47.93.132.139:8081/nexus/content/repositories/persagy/</url>
  25. </repository>
  26. <repository>
  27. <id>integrated</id>
  28. <name>releases Repository</name>
  29. <url>http://47.93.132.139:8081/nexus/content/repositories/integrated/</url>
  30. </repository>
  31. </repositories>
  32. <dependencies>
  33. <dependency>
  34. <groupId>org.projectlombok</groupId>
  35. <artifactId>lombok</artifactId>
  36. <optional>true</optional>
  37. </dependency>
  38. <!-- 项目启动 -->
  39. <dependency>
  40. <groupId>com.persagy</groupId>
  41. <artifactId>apm-server</artifactId>
  42. <exclusions>
  43. <exclusion>
  44. <artifactId>mybatis</artifactId>
  45. <groupId>org.mybatis</groupId>
  46. </exclusion>
  47. <exclusion>
  48. <artifactId>poi</artifactId>
  49. <groupId>org.apache.poi</groupId>
  50. </exclusion>
  51. <exclusion>
  52. <artifactId>poi-ooxml</artifactId>
  53. <groupId>org.apache.poi</groupId>
  54. </exclusion>
  55. <exclusion>
  56. <artifactId>poi-ooxml-schemas</artifactId>
  57. <groupId>org.apache.poi</groupId>
  58. </exclusion>
  59. </exclusions>
  60. </dependency>
  61. <!-- apm 工具包 -->
  62. <dependency>
  63. <groupId>com.persagy</groupId>
  64. <artifactId>apm-common</artifactId>
  65. <exclusions>
  66. <exclusion>
  67. <groupId>com.persagy</groupId>
  68. <artifactId>integrated-redis-spring-boot-starter</artifactId>
  69. </exclusion>
  70. </exclusions>
  71. </dependency>
  72. <!-- lang -->
  73. <dependency>
  74. <groupId>commons-lang</groupId>
  75. <artifactId>commons-lang</artifactId>
  76. </dependency>
  77. <!-- gson json,java对象互转 -->
  78. <dependency>
  79. <groupId>com.google.code.gson</groupId>
  80. <artifactId>gson</artifactId>
  81. </dependency>
  82. <!-- 配置中心(包含注册中心) -->
  83. <dependency>
  84. <groupId>com.persagy</groupId>
  85. <artifactId>integrated-config-client</artifactId>
  86. <exclusions>
  87. <exclusion>
  88. <artifactId>xstream</artifactId>
  89. <groupId>com.thoughtworks.xstream</groupId>
  90. </exclusion>
  91. </exclusions>
  92. </dependency>
  93. <!-- 日志 -->
  94. <dependency>
  95. <groupId>com.persagy</groupId>
  96. <artifactId>integrated-log-spring-boot-starter</artifactId>
  97. </dependency>
  98. <!-- feign -->
  99. <dependency>
  100. <groupId>com.persagy</groupId>
  101. <artifactId>integrated-ribbon-spring-boot-starter</artifactId>
  102. </dependency>
  103. <!-- swagger -->
  104. <dependency>
  105. <groupId>com.persagy</groupId>
  106. <artifactId>integrated-swagger2-spring-boot-starter</artifactId>
  107. </dependency>
  108. <!-- 数学逻辑运算解析库-->
  109. <dependency>
  110. <groupId>com.googlecode.aviator</groupId>
  111. <artifactId>aviator</artifactId>
  112. <version>5.2.5</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>com.persagy</groupId>
  116. <artifactId>apm-mybatis</artifactId>
  117. </dependency>
  118. <dependency>
  119. <groupId>com.persagy.apm</groupId>
  120. <artifactId>alarm-data-starter</artifactId>
  121. <version>v2.0.0-SNAPSHOT</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.mybatis</groupId>
  125. <artifactId>mybatis</artifactId>
  126. <version>3.5.6</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>com.thoughtworks.xstream</groupId>
  130. <artifactId>xstream</artifactId>
  131. <version>1.4.18</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>org.apache.poi</groupId>
  135. <artifactId>poi</artifactId>
  136. <version>4.1.2</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>org.apache.poi</groupId>
  140. <artifactId>poi-ooxml</artifactId>
  141. <version>4.1.2</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.apache.skywalking</groupId>
  145. <artifactId>apm-toolkit-logback-1.x</artifactId>
  146. <version>8.3.0</version>
  147. </dependency>
  148. </dependencies>
  149. </project>