pom.xml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.qmth.demo</groupId>
  7. <artifactId>qmth-demo</artifactId>
  8. <packaging>pom</packaging>
  9. <version>1.0.6</version>
  10. <modules>
  11. <module>api-demo</module>
  12. <module>data-upgrade-demo</module>
  13. <module>ai-api-demo</module>
  14. </modules>
  15. <properties>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <maven.compiler.source>1.8</maven.compiler.source>
  18. <maven.compiler.target>1.8</maven.compiler.target>
  19. <qmth.boot.version>1.0.6</qmth.boot.version>
  20. <springboot.version>2.3.7.RELEASE</springboot.version>
  21. </properties>
  22. <dependencyManagement>
  23. <dependencies>
  24. <dependency>
  25. <groupId>com.qmth.boot</groupId>
  26. <artifactId>starter-api</artifactId>
  27. <version>${qmth.boot.version}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.qmth.boot</groupId>
  31. <artifactId>core-uid</artifactId>
  32. <version>${qmth.boot.version}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.qmth.boot</groupId>
  36. <artifactId>core-cache</artifactId>
  37. <version>${qmth.boot.version}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.qmth.boot</groupId>
  41. <artifactId>core-concurrent</artifactId>
  42. <version>${qmth.boot.version}</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.qmth.boot</groupId>
  46. <artifactId>core-schedule</artifactId>
  47. <version>${qmth.boot.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.qmth.boot</groupId>
  51. <artifactId>core-fss</artifactId>
  52. <version>${qmth.boot.version}</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.qmth.boot</groupId>
  56. <artifactId>core-retrofit</artifactId>
  57. <version>${qmth.boot.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.qmth.boot</groupId>
  61. <artifactId>core-solar</artifactId>
  62. <version>${qmth.boot.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.qmth.boot</groupId>
  66. <artifactId>core-sms</artifactId>
  67. <version>${qmth.boot.version}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.qmth.boot</groupId>
  71. <artifactId>core-ai</artifactId>
  72. <version>${qmth.boot.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.qmth.boot</groupId>
  76. <artifactId>data-redis</artifactId>
  77. <version>${qmth.boot.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.qmth.boot</groupId>
  81. <artifactId>data-mybatis-plus</artifactId>
  82. <version>${qmth.boot.version}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.qmth.boot</groupId>
  86. <artifactId>data-upgrade</artifactId>
  87. <version>${qmth.boot.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-starter-web</artifactId>
  92. <version>${springboot.version}</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-starter-test</artifactId>
  97. <version>${springboot.version}</version>
  98. <scope>test</scope>
  99. </dependency>
  100. <dependency>
  101. <groupId>junit</groupId>
  102. <artifactId>junit</artifactId>
  103. <version>4.13.2</version>
  104. <scope>test</scope>
  105. </dependency>
  106. </dependencies>
  107. </dependencyManagement>
  108. <build>
  109. <plugins>
  110. <plugin>
  111. <groupId>org.apache.maven.plugins</groupId>
  112. <artifactId>maven-surefire-plugin</artifactId>
  113. <version>3.5.2</version>
  114. <configuration>
  115. <skip>true</skip>
  116. <skipTests>true</skipTests>
  117. </configuration>
  118. </plugin>
  119. </plugins>
  120. </build>
  121. <repositories>
  122. <repository>
  123. <id>nexus-public</id>
  124. <name>nexus-public</name>
  125. <url>http://192.168.10.83:8083/repository/maven-public/</url>
  126. </repository>
  127. </repositories>
  128. <pluginRepositories>
  129. <pluginRepository>
  130. <id>nexus-public</id>
  131. <name>nexus-public</name>
  132. <url>http://192.168.10.83:8083/repository/maven-public/</url>
  133. </pluginRepository>
  134. </pluginRepositories>
  135. </project>