You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

149 lines
5.0 KiB

1 year ago
11 months ago
1 year ago
4 months ago
1 year ago
4 months ago
1 year ago
10 months ago
10 months ago
8 months ago
10 months ago
10 months ago
1 year ago
11 months ago
10 months ago
11 months ago
4 months ago
9 months ago
9 months ago
10 months ago
9 months ago
9 months ago
7 months ago
9 months ago
8 months ago
8 months ago
9 months ago
9 months ago
9 months ago
1 year ago
1 year ago
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>3.2.6</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.iflytop</groupId>
  12. <artifactId>a8000</artifactId>
  13. <version>1</version>
  14. <name>boditech-a8000</name>
  15. <description>boditech-a8000</description>
  16. <properties>
  17. <java.version>21</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-websocket</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-aop</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework</groupId>
  34. <artifactId>spring-aop</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.aspectj</groupId>
  38. <artifactId>aspectjweaver</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.xerial</groupId>
  42. <artifactId>sqlite-jdbc</artifactId>
  43. <version>3.45.2.0</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.mybatis.spring.boot</groupId>
  47. <artifactId>mybatis-spring-boot-starter</artifactId>
  48. <version>3.0.3</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.java-websocket</groupId>
  52. <artifactId>Java-WebSocket</artifactId>
  53. <version>1.5.4</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.freemarker</groupId>
  57. <artifactId>freemarker</artifactId>
  58. <version>2.3.31</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.jetbrains</groupId>
  62. <artifactId>annotations</artifactId>
  63. <version>RELEASE</version>
  64. <scope>compile</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>net.sourceforge.javacsv</groupId>
  68. <artifactId>javacsv</artifactId>
  69. <version>2.0</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.projectlombok</groupId>
  73. <artifactId>lombok</artifactId>
  74. <scope>annotationProcessor</scope>
  75. </dependency>
  76. <!-- <dependency>-->
  77. <!-- <groupId>io.springfox</groupId>-->
  78. <!-- <artifactId>springfox-boot-starter</artifactId>-->
  79. <!-- <version>3.0.0</version>-->
  80. <!-- </dependency>-->
  81. <dependency>
  82. <groupId>org.springdoc</groupId>
  83. <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
  84. <version>2.3.0</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.springframework.boot</groupId>
  88. <artifactId>spring-boot-starter-validation</artifactId>
  89. </dependency>
  90. <dependency>
  91. <!--https://hutool.cn/docs-->
  92. <groupId>cn.hutool</groupId>
  93. <artifactId>hutool-all</artifactId>
  94. <version>5.8.24</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.apache.poi</groupId>
  98. <artifactId>poi-ooxml</artifactId>
  99. <version>3.17</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.springframework.boot</groupId>
  103. <artifactId>spring-boot-starter-actuator</artifactId>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.springframework.boot</groupId>
  107. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  108. </dependency>
  109. <dependency>
  110. <groupId>io.netty</groupId>
  111. <artifactId>netty-all</artifactId>
  112. <version>4.1.94.Final</version>
  113. </dependency>
  114. </dependencies>
  115. <build>
  116. <plugins>
  117. <plugin>
  118. <groupId>org.springframework.boot</groupId>
  119. <artifactId>spring-boot-maven-plugin</artifactId>
  120. </plugin>
  121. </plugins>
  122. </build>
  123. <!-- 配置源,以阿里云源为例 -->
  124. <repositories>
  125. <repository>
  126. <id>tencent</id>
  127. <url>https://mirrors.cloud.tencent.com/nexus/repository/maven-public/</url>
  128. </repository>
  129. </repositories>
  130. <pluginRepositories>
  131. <pluginRepository>
  132. <id>tencent</id>
  133. <url>https://mirrors.cloud.tencent.com/nexus/repository/maven-public/</url>
  134. </pluginRepository>
  135. </pluginRepositories>
  136. </project>