opai服务管理
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.

209 lines
6.1 KiB

2 months ago
2 months ago
  1. <?xml version="1.0"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.bw</groupId>
  7. <artifactId>opai-service-center</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <groupId>com.bw</groupId>
  11. <artifactId>asr-service</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <name>asr-service</name>
  14. <url>http://maven.apache.org</url>
  15. <properties>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>junit</groupId>
  21. <artifactId>junit</artifactId>
  22. <version>3.8.1</version>
  23. <scope>test</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-web</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.alibaba.cloud</groupId>
  31. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.cloud</groupId>
  35. <artifactId>spring-cloud-starter-openfeign</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.alibaba.cloud</groupId>
  39. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-actuator</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.projectlombok</groupId>
  47. <artifactId>lombok</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.alibaba</groupId>
  51. <artifactId>fastjson</artifactId>
  52. <version>2.0.17</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.apache.httpcomponents</groupId>
  56. <artifactId>httpclient</artifactId>
  57. <version>4.5.3</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.apache.httpcomponents</groupId>
  61. <artifactId>httpmime</artifactId>
  62. <version>4.5.13</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>commons-lang</groupId>
  66. <artifactId>commons-lang</artifactId>
  67. <version>2.6</version>
  68. </dependency>
  69. <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
  70. <dependency>
  71. <groupId>com.squareup.okhttp3</groupId>
  72. <artifactId>okhttp</artifactId>
  73. <version>3.14.9</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.springframework.kafka</groupId>
  77. <artifactId>spring-kafka</artifactId>
  78. </dependency>
  79. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi -->
  80. <dependency>
  81. <groupId>org.apache.poi</groupId>
  82. <artifactId>poi</artifactId>
  83. <version>4.1.2</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.apache.poi</groupId>
  87. <artifactId>poi-ooxml</artifactId>
  88. <version>4.1.2</version>
  89. </dependency>
  90. <!-- Fastjson2 -->
  91. <dependency>
  92. <groupId>com.alibaba.fastjson2</groupId>
  93. <artifactId>fastjson2</artifactId>
  94. <version>2.0.21</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.aliyun</groupId>
  98. <artifactId>alibabacloud-quanmiaolightapp20240801</artifactId>
  99. <version>2.0.33</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.aliyun</groupId>
  103. <artifactId>alibabacloud-aimiaobi20230801</artifactId>
  104. <version>1.0.89</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.projectlombok</groupId>
  108. <artifactId>lombok</artifactId>
  109. <version>1.18.30</version>
  110. </dependency>
  111. </dependencies>
  112. <build>
  113. <!-- <pluginManagement> --><!-- lock down plugins versions to avoid using Maven defaults (may be
  114. moved
  115. to parent pom) -->
  116. <plugins>
  117. <!-- clean lifecycle, see
  118. https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  119. <plugin>
  120. <artifactId>maven-clean-plugin</artifactId>
  121. <version>3.1.0</version>
  122. </plugin>
  123. <!-- default lifecycle, jar packaging: see
  124. https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  125. <plugin>
  126. <artifactId>maven-resources-plugin</artifactId>
  127. <version>3.0.2</version>
  128. </plugin>
  129. <plugin>
  130. <artifactId>maven-compiler-plugin</artifactId>
  131. <version>3.8.0</version>
  132. </plugin>
  133. <plugin>
  134. <artifactId>maven-surefire-plugin</artifactId>
  135. <version>2.22.1</version>
  136. </plugin>
  137. <plugin>
  138. <artifactId>maven-jar-plugin</artifactId>
  139. <version>3.0.2</version>
  140. </plugin>
  141. <plugin>
  142. <artifactId>maven-install-plugin</artifactId>
  143. <version>2.5.2</version>
  144. </plugin>
  145. <plugin>
  146. <artifactId>maven-deploy-plugin</artifactId>
  147. <version>2.8.2</version>
  148. </plugin>
  149. <!-- site lifecycle, see
  150. https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  151. <plugin>
  152. <artifactId>maven-site-plugin</artifactId>
  153. <version>3.7.1</version>
  154. </plugin>
  155. <plugin>
  156. <artifactId>maven-project-info-reports-plugin</artifactId>
  157. <version>3.0.0</version>
  158. </plugin>
  159. <!-- spring-boot-maven-plugin插件就是打包spring boot应用的 -->
  160. <plugin>
  161. <groupId>org.springframework.boot</groupId>
  162. <artifactId>spring-boot-maven-plugin</artifactId>
  163. <configuration>
  164. <mainClass>com.bw.asr.Application</mainClass>
  165. <layout>ZIP</layout>
  166. <includes>
  167. <include>
  168. <groupId>${project.groupId}</groupId>
  169. <artifactId>${project.artifactId}</artifactId>
  170. </include>
  171. </includes>
  172. </configuration>
  173. <executions>
  174. <execution>
  175. <goals>
  176. <goal>repackage</goal>
  177. </goals>
  178. </execution>
  179. </executions>
  180. </plugin>
  181. <plugin>
  182. <groupId>org.apache.maven.plugins</groupId>
  183. <artifactId>maven-dependency-plugin</artifactId>
  184. <version>3.1.1</version>
  185. <executions>
  186. <execution>
  187. <id>copy</id>
  188. <phase>package</phase>
  189. <goals>
  190. <goal>copy-dependencies</goal>
  191. </goals>
  192. <configuration>
  193. <type>jar</type>
  194. <includeTypes>jar</includeTypes>
  195. <includeScope>runtime</includeScope>
  196. <outputDirectory>${project.build.directory}/libs</outputDirectory>
  197. </configuration>
  198. </execution>
  199. </executions>
  200. </plugin>
  201. </plugins>
  202. <!-- </pluginManagement> -->
  203. </build>
  204. </project>