pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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.0.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. </exclusions>
  52. </dependency>
  53. <!-- apm 工具包 -->
  54. <dependency>
  55. <groupId>com.persagy</groupId>
  56. <artifactId>apm-common</artifactId>
  57. <exclusions>
  58. <exclusion>
  59. <groupId>com.persagy</groupId>
  60. <artifactId>integrated-redis-spring-boot-starter</artifactId>
  61. </exclusion>
  62. </exclusions>
  63. </dependency>
  64. <!-- lang -->
  65. <dependency>
  66. <groupId>commons-lang</groupId>
  67. <artifactId>commons-lang</artifactId>
  68. </dependency>
  69. <!-- gson json,java对象互转 -->
  70. <dependency>
  71. <groupId>com.google.code.gson</groupId>
  72. <artifactId>gson</artifactId>
  73. </dependency>
  74. <!-- 配置中心(包含注册中心) -->
  75. <dependency>
  76. <groupId>com.persagy</groupId>
  77. <artifactId>integrated-config-client</artifactId>
  78. <exclusions>
  79. <exclusion>
  80. <artifactId>xstream</artifactId>
  81. <groupId>com.thoughtworks.xstream</groupId>
  82. </exclusion>
  83. </exclusions>
  84. </dependency>
  85. <!-- 日志 -->
  86. <dependency>
  87. <groupId>com.persagy</groupId>
  88. <artifactId>integrated-log-spring-boot-starter</artifactId>
  89. </dependency>
  90. <!-- feign -->
  91. <dependency>
  92. <groupId>com.persagy</groupId>
  93. <artifactId>integrated-ribbon-spring-boot-starter</artifactId>
  94. </dependency>
  95. <!-- swagger -->
  96. <dependency>
  97. <groupId>com.persagy</groupId>
  98. <artifactId>integrated-swagger2-spring-boot-starter</artifactId>
  99. </dependency>
  100. <!-- 数学逻辑运算解析库-->
  101. <dependency>
  102. <groupId>com.googlecode.aviator</groupId>
  103. <artifactId>aviator</artifactId>
  104. <version>5.2.5</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.persagy</groupId>
  108. <artifactId>apm-mybatis</artifactId>
  109. </dependency>
  110. <dependency>
  111. <groupId>com.persagy.apm</groupId>
  112. <artifactId>alarm-data-starter</artifactId>
  113. <version>v2.0.0-SNAPSHOT</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.mybatis</groupId>
  117. <artifactId>mybatis</artifactId>
  118. <version>3.5.6</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>com.thoughtworks.xstream</groupId>
  122. <artifactId>xstream</artifactId>
  123. <version>1.4.18</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.apache.poi</groupId>
  127. <artifactId>poi</artifactId>
  128. <version>4.1.2</version>
  129. </dependency>
  130. </dependencies>
  131. </project>