pom.xml 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <parent>
  4. <artifactId>service-ai</artifactId>
  5. <groupId>com.usky</groupId>
  6. <version>0.0.1</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>service-ai-biz</artifactId>
  10. <dependencies>
  11. <dependency>
  12. <groupId>com.usky</groupId>
  13. <artifactId>common-cloud-starter</artifactId>
  14. </dependency>
  15. <dependency>
  16. <groupId>com.usky</groupId>
  17. <artifactId>service-ai-api</artifactId>
  18. <version>0.0.1</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.usky</groupId>
  22. <artifactId>ruoyi-common-swagger</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.mybatis.spring.boot</groupId>
  26. <artifactId>mybatis-spring-boot-starter</artifactId>
  27. <version>2.1.4</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>mysql</groupId>
  31. <artifactId>mysql-connector-java</artifactId>
  32. <scope>runtime</scope>
  33. </dependency>
  34. <!--MQTT依赖-->
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-integration</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.integration</groupId>
  41. <artifactId>spring-integration-mqtt</artifactId>
  42. </dependency>
  43. <!-- 阿里dashscope依赖 -->
  44. <dependency>
  45. <groupId>com.alibaba</groupId>
  46. <artifactId>dashscope-sdk-java</artifactId>
  47. <version>2.14.0</version>
  48. <exclusions>
  49. <exclusion>
  50. <groupId>org.slf4j</groupId>
  51. <artifactId>slf4j-simple</artifactId>
  52. </exclusion>
  53. </exclusions>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-data-jpa</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.baomidou</groupId>
  61. <artifactId>mybatis-plus-boot-starter</artifactId>
  62. <version>3.4.0</version>
  63. </dependency>
  64. </dependencies>
  65. <build>
  66. <finalName>${project.artifactId}</finalName>
  67. <plugins>
  68. <plugin>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-maven-plugin</artifactId>
  71. <version>2.2.6.RELEASE</version>
  72. <executions>
  73. <execution>
  74. <goals>
  75. <goal>repackage</goal>
  76. </goals>
  77. </execution>
  78. </executions>
  79. </plugin>
  80. <plugin>
  81. <groupId>com.github.shalousun</groupId>
  82. <artifactId>smart-doc-maven-plugin</artifactId>
  83. <version>2.1.1</version>
  84. <configuration>
  85. <configFile>./src/main/resources/smart-doc.json</configFile>
  86. <projectName>test</projectName>
  87. </configuration>
  88. </plugin>
  89. </plugins>
  90. </build>
  91. </project>