pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>cn.qinys</groupId>
  6. <artifactId>platform-service</artifactId>
  7. <version>1.0.0-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>platform-service-mobile</artifactId>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. </properties>
  13. <dependencies>
  14. <dependency>
  15. <groupId>cn.qinys</groupId>
  16. <artifactId>platform-core-base</artifactId>
  17. <version>1.0.0-SNAPSHOT</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>mysql</groupId>
  21. <artifactId>mysql-connector-java</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>cn.qinys</groupId>
  25. <artifactId>platform-entity-wishing</artifactId>
  26. <version>1.0.0-SNAPSHOT</version>
  27. <scope>compile</scope>
  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>com.alibaba.cloud</groupId>
  35. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-test</artifactId>
  40. <scope>test</scope>
  41. <exclusions>
  42. <exclusion>
  43. <groupId>org.junit.jupiter</groupId>
  44. <artifactId>junit-jupiter</artifactId>
  45. </exclusion>
  46. </exclusions>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.baomidou</groupId>
  50. <artifactId>mybatis-plus-spring-boot4-starter</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.baomidou</groupId>
  54. <artifactId>mybatis-plus-jsqlparser</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.hibernate.validator</groupId>
  58. <artifactId>hibernate-validator</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.cloud</groupId>
  62. <artifactId>spring-cloud-starter-openfeign</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework.cloud</groupId>
  66. <artifactId>spring-cloud-starter-loadbalancer</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.ai</groupId>
  70. <artifactId>spring-ai-starter-model-deepseek</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.ai</groupId>
  74. <artifactId>spring-ai-starter-model-chat-memory-repository-jdbc</artifactId>
  75. </dependency>
  76. <!-- Source: https://mvnrepository.com/artifact/com.alibaba/dashscope-sdk-java -->
  77. <dependency>
  78. <groupId>com.alibaba</groupId>
  79. <artifactId>dashscope-sdk-java</artifactId>
  80. <version>2.22.22</version>
  81. <scope>compile</scope>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.github.victools</groupId>
  85. <artifactId>jsonschema-generator</artifactId>
  86. <version>5.0.0</version>
  87. <scope>compile</scope>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-starter-test</artifactId>
  92. <version>4.1.0</version>
  93. <scope>test</scope>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-starter-actuator</artifactId>
  98. </dependency>
  99. </dependencies>
  100. <build>
  101. <finalName>wishing-mobile</finalName>
  102. <resources>
  103. <resource>
  104. <directory>src/main/java</directory>
  105. <includes>
  106. <include>**/*.xml</include>
  107. </includes>
  108. </resource>
  109. <resource>
  110. <directory>src/main/resources</directory>
  111. <includes>
  112. <include>**/*.yml</include>
  113. <include>**/*.yaml</include>
  114. <include>**/*.properties</include>
  115. <include>**/*.xml</include>
  116. </includes>
  117. </resource>
  118. </resources>
  119. <plugins>
  120. <plugin>
  121. <groupId>org.springframework.boot</groupId>
  122. <artifactId>spring-boot-maven-plugin</artifactId>
  123. <version>4.1.0</version>
  124. <executions>
  125. <execution>
  126. <goals>
  127. <goal>repackage</goal>
  128. </goals>
  129. </execution>
  130. </executions>
  131. </plugin>
  132. </plugins>
  133. </build>
  134. </project>