pom.xml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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.7.0</jboot.version> -->
  15. <jboot.version>2.1.5</jboot.version>
  16. <slf4j-log4j12.version>1.7.25</slf4j-log4j12.version>
  17. <logback.version>1.1.11</logback.version>
  18. <motan.version>1.1.3</motan.version>
  19. </properties>
  20. <modules>
  21. <module>jboot-admin-base</module>
  22. <module>jboot-admin</module>
  23. <module>jboot-admin-service</module>
  24. <module>jboot-wechat</module>
  25. <module>jboot-b2c-service</module>
  26. <module>jboot-b2c</module>
  27. </modules>
  28. <dependencyManagement>
  29. <dependencies>
  30. <dependency>
  31. <groupId>junit</groupId>
  32. <artifactId>junit</artifactId>
  33. <version>4.12</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>io.jboot</groupId>
  37. <artifactId>jboot</artifactId>
  38. <version>${jboot.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>ch.qos.logback</groupId>
  42. <artifactId>logback-core</artifactId>
  43. <version>${logback.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>ch.qos.logback</groupId>
  47. <artifactId>logback-classic</artifactId>
  48. <version>${logback.version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>eu.bitwalker</groupId>
  52. <artifactId>UserAgentUtils</artifactId>
  53. <version>1.15</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.apache.shiro</groupId>
  57. <artifactId>shiro-core</artifactId>
  58. <version>1.3.2</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.apache.shiro</groupId>
  62. <artifactId>shiro-web</artifactId>
  63. <version>1.3.2</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.weibo</groupId>
  67. <artifactId>motan-core</artifactId>
  68. <version>${motan.version}</version>
  69. <exclusions>
  70. <exclusion>
  71. <groupId>org.slf4j</groupId>
  72. <artifactId>slf4j-log4j12</artifactId>
  73. </exclusion>
  74. <exclusion>
  75. <groupId>log4j</groupId>
  76. <artifactId>log4j</artifactId>
  77. </exclusion>
  78. </exclusions>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.weibo</groupId>
  82. <artifactId>motan-transport-netty4</artifactId>
  83. <version>${motan.version}</version>
  84. <exclusions>
  85. <exclusion>
  86. <groupId>org.slf4j</groupId>
  87. <artifactId>slf4j-log4j12</artifactId>
  88. </exclusion>
  89. <exclusion>
  90. <groupId>log4j</groupId>
  91. <artifactId>log4j</artifactId>
  92. </exclusion>
  93. </exclusions>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.weibo</groupId>
  97. <artifactId>motan-registry-consul</artifactId>
  98. <version>${motan.version}</version>
  99. <exclusions>
  100. <exclusion>
  101. <groupId>org.slf4j</groupId>
  102. <artifactId>slf4j-log4j12</artifactId>
  103. </exclusion>
  104. <exclusion>
  105. <groupId>log4j</groupId>
  106. <artifactId>log4j</artifactId>
  107. </exclusion>
  108. </exclusions>
  109. </dependency>
  110. <dependency>
  111. <groupId>com.weibo</groupId>
  112. <artifactId>motan-registry-zookeeper</artifactId>
  113. <version>${motan.version}</version>
  114. <exclusions>
  115. <exclusion>
  116. <groupId>org.slf4j</groupId>
  117. <artifactId>slf4j-log4j12</artifactId>
  118. </exclusion>
  119. <exclusion>
  120. <groupId>log4j</groupId>
  121. <artifactId>log4j</artifactId>
  122. </exclusion>
  123. </exclusions>
  124. </dependency>
  125. </dependencies>
  126. </dependencyManagement>
  127. <build>
  128. <plugins>
  129. <plugin>
  130. <groupId>org.apache.maven.plugins</groupId>
  131. <artifactId>maven-compiler-plugin</artifactId>
  132. <version>3.6.1</version>
  133. <configuration>
  134. <source>1.8</source>
  135. <target>1.8</target>
  136. <encoding>UTF-8</encoding>
  137. <!-- java8 保留参数名编译参数 -->
  138. <compilerArgument>-parameters</compilerArgument>
  139. </configuration>
  140. </plugin>
  141. </plugins>
  142. </build>
  143. </project>