pom.xml 5.2 KB

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