pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. 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.yinjie</groupId>
  6. <artifactId>HeatingPaymentsInvoker</artifactId>
  7. <version>1.0</version>
  8. </parent>
  9. <artifactId>yjCommon</artifactId>
  10. <version>1.0</version>
  11. <packaging>jar</packaging>
  12. <name>yjCommon</name>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.apache.commons</groupId>
  19. <artifactId>commons-lang3</artifactId>
  20. <version>3.12.0</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>commons-io</groupId>
  24. <artifactId>commons-io</artifactId>
  25. <version>2.11.0</version>
  26. </dependency>
  27. <!--让rabbitmq使用log4j2日志输出-->
  28. <dependency>
  29. <groupId>org.slf4j</groupId>
  30. <artifactId>slf4j-api</artifactId>
  31. <version>2.0.5</version>
  32. </dependency>
  33. <dependency> <!-- 桥接:告诉Slf4j使用Log4j2 -->
  34. <groupId>org.apache.logging.log4j</groupId>
  35. <artifactId>log4j-slf4j-impl</artifactId>
  36. <version>2.20.0</version>
  37. </dependency>
  38. <dependency> <!-- 桥接:告诉commons logging使用Log4j2 -->
  39. <groupId>org.apache.logging.log4j</groupId>
  40. <artifactId>log4j-jcl</artifactId>
  41. <version>2.20.0</version>
  42. </dependency>
  43. <!-- https://mvnrepository.com/artifact/com.ibeetl/beetl -->
  44. <dependency>
  45. <groupId>com.ibeetl</groupId>
  46. <artifactId>beetl</artifactId>
  47. <version>3.15.13.RELEASE</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>mysql</groupId>
  51. <artifactId>mysql-connector-java</artifactId>
  52. <version>5.1.41</version>
  53. </dependency>
  54. <!--使用esclient必须带上-->
  55. <dependency>
  56. <groupId>com.fasterxml.jackson.core</groupId>
  57. <artifactId>jackson-core</artifactId>
  58. <version>2.14.2</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.codelibs.elasticsearch.module</groupId>
  62. <artifactId>lang-painless</artifactId>
  63. <version>5.5.0</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.groovy</groupId>
  67. <artifactId>groovy-all</artifactId>
  68. <version>4.0.17</version>
  69. <type>pom</type>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.google.zxing</groupId>
  73. <artifactId>core</artifactId>
  74. <version>3.5.1</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.google.zxing</groupId>
  78. <artifactId>javase</artifactId>
  79. <version>3.5.1</version>
  80. </dependency>
  81. <!-- https://mvnrepository.com/artifact/com.alibaba/easyexcel -->
  82. <dependency>
  83. <groupId>com.alibaba</groupId>
  84. <artifactId>easyexcel</artifactId>
  85. <version>3.3.3</version>
  86. <exclusions>
  87. <exclusion>
  88. <groupId>commons-codec</groupId>
  89. <artifactId>commons-codec</artifactId>
  90. </exclusion>
  91. <exclusion>
  92. <groupId>org.slf4j</groupId>
  93. <artifactId>slf4j-api</artifactId>
  94. </exclusion>
  95. <exclusion>
  96. <groupId>commons-io</groupId>
  97. <artifactId>commons-io</artifactId>
  98. </exclusion>
  99. </exclusions>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.jsoup</groupId>
  103. <artifactId>jsoup</artifactId>
  104. <version>1.15.4</version>
  105. </dependency>
  106. <!--xml-->
  107. <dependency>
  108. <groupId>com.fasterxml.jackson.core</groupId>
  109. <artifactId>jackson-core</artifactId>
  110. <version>2.17.1</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>com.fasterxml.jackson.core</groupId>
  114. <artifactId>jackson-databind</artifactId>
  115. <version>2.17.1</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>com.fasterxml.jackson.core</groupId>
  119. <artifactId>jackson-annotations</artifactId>
  120. <version>2.17.1</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>com.fasterxml.jackson.dataformat</groupId>
  124. <artifactId>jackson-dataformat-xml</artifactId>
  125. <version>2.17.1</version>
  126. </dependency>
  127. </dependencies>
  128. </project>