pom.xml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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>io.jboot.admin</groupId>
  7. <artifactId>jboot-admin-parent</artifactId>
  8. <version>1.0</version>
  9. <packaging>pom</packaging>
  10. <name>jboot-admin-parent</name>
  11. <url>http://maven.apache.org</url>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <jboot.version>1.6.4</jboot.version>
  15. <slf4j-log4j12.version>1.7.25</slf4j-log4j12.version>
  16. <logback.version>1.1.11</logback.version>
  17. </properties>
  18. <modules>
  19. <module>jboot-admin-base</module>
  20. <module>jboot-admin</module>
  21. <module>jboot-admin-service</module>
  22. <module>jboot-wechat</module>
  23. <module>jboot-b2c-service</module>
  24. <module>jboot-b2c</module>
  25. </modules>
  26. <dependencyManagement>
  27. <dependencies>
  28. <dependency>
  29. <groupId>junit</groupId>
  30. <artifactId>junit</artifactId>
  31. <version>4.12</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>io.jboot</groupId>
  35. <artifactId>jboot</artifactId>
  36. <version>${jboot.version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>ch.qos.logback</groupId>
  40. <artifactId>logback-core</artifactId>
  41. <version>${logback.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>ch.qos.logback</groupId>
  45. <artifactId>logback-classic</artifactId>
  46. <version>${logback.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>eu.bitwalker</groupId>
  50. <artifactId>UserAgentUtils</artifactId>
  51. <version>1.15</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.apache.shiro</groupId>
  55. <artifactId>shiro-core</artifactId>
  56. <version>1.3.2</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.apache.shiro</groupId>
  60. <artifactId>shiro-web</artifactId>
  61. <version>1.3.2</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.weibo</groupId>
  65. <artifactId>motan-core</artifactId>
  66. <version>1.1.1</version>
  67. <exclusions>
  68. <exclusion>
  69. <groupId>org.slf4j</groupId>
  70. <artifactId>slf4j-log4j12</artifactId>
  71. </exclusion>
  72. <exclusion>
  73. <groupId>log4j</groupId>
  74. <artifactId>log4j</artifactId>
  75. </exclusion>
  76. </exclusions>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.weibo</groupId>
  80. <artifactId>motan-transport-netty4</artifactId>
  81. <version>1.1.1</version>
  82. <exclusions>
  83. <exclusion>
  84. <groupId>org.slf4j</groupId>
  85. <artifactId>slf4j-log4j12</artifactId>
  86. </exclusion>
  87. <exclusion>
  88. <groupId>log4j</groupId>
  89. <artifactId>log4j</artifactId>
  90. </exclusion>
  91. </exclusions>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.weibo</groupId>
  95. <artifactId>motan-registry-consul</artifactId>
  96. <version>1.1.1</version>
  97. <exclusions>
  98. <exclusion>
  99. <groupId>org.slf4j</groupId>
  100. <artifactId>slf4j-log4j12</artifactId>
  101. </exclusion>
  102. <exclusion>
  103. <groupId>log4j</groupId>
  104. <artifactId>log4j</artifactId>
  105. </exclusion>
  106. </exclusions>
  107. </dependency>
  108. <dependency>
  109. <groupId>com.weibo</groupId>
  110. <artifactId>motan-registry-zookeeper</artifactId>
  111. <version>1.1.1</version>
  112. <exclusions>
  113. <exclusion>
  114. <groupId>org.slf4j</groupId>
  115. <artifactId>slf4j-log4j12</artifactId>
  116. </exclusion>
  117. <exclusion>
  118. <groupId>log4j</groupId>
  119. <artifactId>log4j</artifactId>
  120. </exclusion>
  121. </exclusions>
  122. </dependency>
  123. </dependencies>
  124. </dependencyManagement>
  125. </project>