hutool-log-5.8.6.pom 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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/maven-v4_0_0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <packaging>jar</packaging>
  7. <parent>
  8. <groupId>cn.hutool</groupId>
  9. <artifactId>hutool-parent</artifactId>
  10. <version>5.8.6</version>
  11. </parent>
  12. <artifactId>hutool-log</artifactId>
  13. <name>${project.artifactId}</name>
  14. <description>Hutool 日志封装</description>
  15. <properties>
  16. <!-- versions -->
  17. <slf4j.version>1.7.36</slf4j.version>
  18. <logback.version>1.4.0</logback.version>
  19. <log4j.version>1.2.17</log4j.version>
  20. <log4j2.version>2.17.2</log4j2.version>
  21. <commons-logging.version>1.2</commons-logging.version>
  22. <tinylog.version>1.3.6</tinylog.version>
  23. <!-- 此处固定3.4.x,支持到jdk8 -->
  24. <jboss-logging.version>3.4.3.Final</jboss-logging.version>
  25. <logtube.version>0.43.4</logtube.version>
  26. </properties>
  27. <dependencies>
  28. <dependency>
  29. <groupId>cn.hutool</groupId>
  30. <artifactId>hutool-core</artifactId>
  31. <version>${project.parent.version}</version>
  32. </dependency>
  33. <!-- Logs -->
  34. <dependency>
  35. <groupId>org.slf4j</groupId>
  36. <artifactId>slf4j-api</artifactId>
  37. <version>${slf4j.version}</version>
  38. <optional>true</optional>
  39. </dependency>
  40. <dependency>
  41. <groupId>ch.qos.logback</groupId>
  42. <artifactId>logback-classic</artifactId>
  43. <version>${logback.version}</version>
  44. <optional>true</optional>
  45. </dependency>
  46. <dependency>
  47. <groupId>log4j</groupId>
  48. <artifactId>log4j</artifactId>
  49. <version>${log4j.version}</version>
  50. <optional>true</optional>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.apache.logging.log4j</groupId>
  54. <artifactId>log4j-api</artifactId>
  55. <version>${log4j2.version}</version>
  56. <optional>true</optional>
  57. </dependency>
  58. <dependency>
  59. <groupId>commons-logging</groupId>
  60. <artifactId>commons-logging</artifactId>
  61. <version>${commons-logging.version}</version>
  62. <optional>true</optional>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.tinylog</groupId>
  66. <artifactId>tinylog</artifactId>
  67. <version>${tinylog.version}</version>
  68. <optional>true</optional>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.tinylog</groupId>
  72. <artifactId>tinylog-api</artifactId>
  73. <version>2.4.1</version>
  74. <optional>true</optional>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.jboss.logging</groupId>
  78. <artifactId>jboss-logging</artifactId>
  79. <version>${jboss-logging.version}</version>
  80. <optional>true</optional>
  81. </dependency>
  82. <dependency>
  83. <groupId>io.github.logtube</groupId>
  84. <artifactId>logtube</artifactId>
  85. <version>${logtube.version}</version>
  86. <optional>true</optional>
  87. </dependency>
  88. <!-- 仅用于测试 -->
  89. <dependency>
  90. <groupId>org.slf4j</groupId>
  91. <artifactId>slf4j-simple</artifactId>
  92. <version>${slf4j.version}</version>
  93. <scope>test</scope>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.tinylog</groupId>
  97. <artifactId>tinylog-impl</artifactId>
  98. <version>2.4.1</version>
  99. <scope>test</scope>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.apache.logging.log4j</groupId>
  103. <artifactId>log4j-core</artifactId>
  104. <version>${log4j2.version}</version>
  105. <scope>test</scope>
  106. </dependency>
  107. </dependencies>
  108. </project>