pom.xml 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. <!-- 阿里dashscope依赖 -->
  35. <dependency>
  36. <groupId>com.alibaba</groupId>
  37. <artifactId>dashscope-sdk-java</artifactId>
  38. <version>2.14.0</version>
  39. <exclusions>
  40. <exclusion>
  41. <groupId>org.slf4j</groupId>
  42. <artifactId>slf4j-simple</artifactId>
  43. </exclusion>
  44. </exclusions>
  45. </dependency>
  46. </dependencies>
  47. <build>
  48. <finalName>${project.artifactId}</finalName>
  49. <plugins>
  50. <plugin>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-maven-plugin</artifactId>
  53. <version>2.2.6.RELEASE</version>
  54. <executions>
  55. <execution>
  56. <goals>
  57. <goal>repackage</goal>
  58. </goals>
  59. </execution>
  60. </executions>
  61. </plugin>
  62. <plugin>
  63. <groupId>com.github.shalousun</groupId>
  64. <artifactId>smart-doc-maven-plugin</artifactId>
  65. <version>2.1.1</version>
  66. <configuration>
  67. <!--指定生成文档的使用的配置文件,配置文件放在自己的项目中-->
  68. <configFile>./src/main/resources/smart-doc.json</configFile>
  69. <!--指定项目名称-->
  70. <projectName>test</projectName>
  71. <!-- <excludes>-->
  72. <!-- <exclude>com.bizmatics:product-service-provider</exclude>-->
  73. <!-- <exclude>cn.afterturn:easypoi-web</exclude>-->
  74. <!-- </excludes>-->
  75. </configuration>
  76. </plugin>
  77. </plugins>
  78. </build>
  79. </project>