pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.qdport</groupId>
  6. <artifactId>qdport-boot-demo</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>qdport-boot-demo</name>
  9. <description>demo project for qdport</description>
  10. <properties>
  11. <java.version>1.8</java.version>
  12. <maven.compiler.source>8</maven.compiler.source>
  13. <maven.compiler.target>8</maven.compiler.target>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <qdport-boot.project.version>v20240814-RELEASE</qdport-boot.project.version>
  16. <qdport.cloud.version>1.1-SNAPSHOT</qdport.cloud.version>
  17. <spring.boot.version>2.7.1</spring.boot.version>
  18. <spring.platform.version>Cairo-SR8</spring.platform.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.qdport</groupId>
  27. <artifactId>qdport-module-auth</artifactId>
  28. <version>${qdport-boot.project.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.qdport</groupId>
  32. <artifactId>qdport-module-generator</artifactId>
  33. <version>${qdport-boot.project.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.qdport</groupId>
  37. <artifactId>qdport-module-resource</artifactId>
  38. <version>${qdport-boot.project.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.qdport</groupId>
  42. <artifactId>qdport-module-system</artifactId>
  43. <version>${qdport-boot.project.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.qdport</groupId>
  47. <artifactId>qdport-module-workflow</artifactId>
  48. <version>${qdport-boot.project.version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-test</artifactId>
  53. <scope>test</scope>
  54. </dependency>
  55. <!--lombok插件-->
  56. <dependency>
  57. <groupId>org.projectlombok</groupId>
  58. <artifactId>lombok</artifactId>
  59. <version>1.18.22</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.alibaba</groupId>
  63. <artifactId>easyexcel</artifactId>
  64. <version>2.2.11</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.qdport</groupId>
  68. <artifactId>qdport-starter-user-syn</artifactId>
  69. <version>1.1-SNAPSHOT</version>
  70. </dependency>
  71. </dependencies>
  72. <dependencyManagement>
  73. <dependencies>
  74. <dependency>
  75. <groupId>com.qdport.cloud</groupId>
  76. <artifactId>qdport-bom</artifactId>
  77. <version>${qdport.cloud.version}</version>
  78. <type>pom</type>
  79. <scope>import</scope>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-dependencies</artifactId>
  84. <version>${spring.boot.version}</version>
  85. <type>pom</type>
  86. <scope>import</scope>
  87. </dependency>
  88. <dependency>
  89. <groupId>io.spring.platform</groupId>
  90. <artifactId>platform-bom</artifactId>
  91. <version>${spring.platform.version}</version>
  92. <type>pom</type>
  93. <scope>import</scope>
  94. </dependency>
  95. </dependencies>
  96. </dependencyManagement>
  97. <build>
  98. <finalName>${artifactId}</finalName>
  99. <plugins>
  100. <plugin>
  101. <groupId>org.springframework.boot</groupId>
  102. <artifactId>spring-boot-maven-plugin</artifactId>
  103. <version>${spring.boot.version}</version>
  104. <executions>
  105. <execution>
  106. <goals>
  107. <goal>repackage</goal>
  108. </goals>
  109. </execution>
  110. </executions>
  111. </plugin>
  112. </plugins>
  113. </build>
  114. <repositories>
  115. <repository>
  116. <id>qdport-release</id>
  117. <name>Release Repository</name>
  118. <url>http://10.236.3.33:8081/repository/maven-public/</url>
  119. </repository>
  120. <repository>
  121. <id>aliyun-repos</id>
  122. <name>Aliyun Repository</name>
  123. <url>https://maven.aliyun.com/repository/public/</url>
  124. <snapshots>
  125. <enabled>false</enabled>
  126. </snapshots>
  127. </repository>
  128. </repositories>
  129. <pluginRepositories>
  130. <pluginRepository>
  131. <id>aliyun-plugin</id>
  132. <name>aliyun-plugin</name>
  133. <url>http://10.236.3.33:8081/repository/maven-public/</url>
  134. <snapshots>
  135. <enabled>false</enabled>
  136. </snapshots>
  137. </pluginRepository>
  138. </pluginRepositories>
  139. </project>