pom.xml 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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>cn.chinaunicom.omniFlowNetCompute</groupId>
  7. <artifactId>omniFlowNetCompute</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <parent>
  10. <groupId>org.springframework.boot</groupId>
  11. <artifactId>spring-boot-starter-parent</artifactId>
  12. <version>2.2.6.RELEASE</version>
  13. <relativePath/> <!-- lookup parent from repository -->
  14. </parent>
  15. <properties>
  16. <maven.compiler.source>8</maven.compiler.source>
  17. <maven.compiler.target>8</maven.compiler.target>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <java.version>17</java.version>
  20. <log4j2.version>2.17.1</log4j2.version>
  21. </properties>
  22. <dependencies>
  23. <!-- Spring Web依赖,用于构建RESTful API -->
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-web</artifactId>
  27. </dependency>
  28. <!-- Spring Boot测试依赖 -->
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-test</artifactId>
  32. <scope>test</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>commons-codec</groupId>
  36. <artifactId>commons-codec</artifactId>
  37. <version>1.15</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.mybatis</groupId>
  41. <artifactId>mybatis</artifactId>
  42. <version>3.5.10</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.mybatis.spring.boot</groupId>
  46. <artifactId>mybatis-spring-boot-starter</artifactId>
  47. <version>2.2.0</version>
  48. </dependency>
  49. <!-- JSON 解析器和生成器 -->
  50. <dependency>
  51. <groupId>com.alibaba</groupId>
  52. <artifactId>fastjson</artifactId>
  53. <version>1.2.83</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-data-redis</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.projectlombok</groupId>
  61. <version>1.18.34</version>
  62. <artifactId>lombok</artifactId>
  63. <scope>provided</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.oceanbase</groupId>
  67. <artifactId>oceanbase-client</artifactId>
  68. <version>2.4.10</version>
  69. </dependency>
  70. <!-- Apache Lang3 -->
  71. <dependency>
  72. <groupId>org.apache.commons</groupId>
  73. <artifactId>commons-lang3</artifactId>
  74. </dependency>
  75. <!-- pagehelper 分页插件 -->
  76. <dependency>
  77. <groupId>com.github.pagehelper</groupId>
  78. <artifactId>pagehelper-spring-boot-starter</artifactId>
  79. <version>2.0.0</version>
  80. </dependency>
  81. <!-- io常用工具类 -->
  82. <dependency>
  83. <groupId>commons-io</groupId>
  84. <artifactId>commons-io</artifactId>
  85. <version>2.13.0</version>
  86. </dependency>
  87. <!-- JSON 解析器和生成器 -->
  88. <dependency>
  89. <groupId>com.alibaba.fastjson2</groupId>
  90. <artifactId>fastjson2</artifactId>
  91. <version>2.0.53</version>
  92. </dependency>
  93. <!-- Image Processing -->
  94. <dependency>
  95. <groupId>com.drewnoakes</groupId>
  96. <artifactId>metadata-extractor</artifactId>
  97. <version>2.18.0</version>
  98. </dependency>
  99. <!--引入图形码工具-->
  100. <dependency>
  101. <groupId>com.github.whvcse</groupId>
  102. <artifactId>easy-captcha</artifactId>
  103. <version>1.6.2</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.apache.poi</groupId>
  107. <artifactId>poi</artifactId>
  108. <version>4.1.2</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.apache.poi</groupId>
  112. <artifactId>poi-ooxml</artifactId>
  113. <version>4.1.2</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.apache.poi</groupId>
  117. <artifactId>poi-ooxml-schemas</artifactId>
  118. <version>4.1.2</version>
  119. </dependency>
  120. <!-- log4j2核心依赖 -->
  121. <dependency>
  122. <groupId>org.apache.logging.log4j</groupId>
  123. <artifactId>log4j-api</artifactId>
  124. <version>${log4j2.version}</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.apache.logging.log4j</groupId>
  128. <artifactId>log4j-core</artifactId>
  129. <version>${log4j2.version}</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.apache.logging.log4j</groupId>
  133. <artifactId>log4j-slf4j-impl</artifactId>
  134. <version>${log4j2.version}</version>
  135. </dependency>
  136. </dependencies>
  137. <build>
  138. <plugins>
  139. <!-- Spring Boot Maven插件,用于打包和运行应用 -->
  140. <plugin>
  141. <groupId>org.springframework.boot</groupId>
  142. <artifactId>spring-boot-maven-plugin</artifactId>
  143. </plugin>
  144. </plugins>
  145. </build>
  146. </project>