pom.xml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.qmth.demo</groupId>
  7. <artifactId>qmth-demo</artifactId>
  8. <version>1.0.5</version>
  9. </parent>
  10. <artifactId>api-demo</artifactId>
  11. <name>api-demo</name>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.qmth.boot</groupId>
  15. <artifactId>starter-api</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.qmth.boot</groupId>
  19. <artifactId>data-redis</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.qmth.boot</groupId>
  23. <artifactId>data-mybatis-plus</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.qmth.boot</groupId>
  27. <artifactId>core-cache</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.qmth.boot</groupId>
  31. <artifactId>core-schedule</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.qmth.boot</groupId>
  35. <artifactId>core-fss</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.qmth.boot</groupId>
  39. <artifactId>core-concurrent</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.qmth.boot</groupId>
  43. <artifactId>core-uid</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.qmth.boot</groupId>
  47. <artifactId>core-solar</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.qmth.boot</groupId>
  51. <artifactId>core-sms</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.qmth.boot</groupId>
  55. <artifactId>core-ai</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-test</artifactId>
  60. <scope>test</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>junit</groupId>
  64. <artifactId>junit</artifactId>
  65. <scope>test</scope>
  66. </dependency>
  67. </dependencies>
  68. <build>
  69. <plugins>
  70. <plugin>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-maven-plugin</artifactId>
  73. <version>2.3.7.RELEASE</version>
  74. </plugin>
  75. </plugins>
  76. </build>
  77. </project>