pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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. </dependency>
  60. </dependencies>
  61. <dependencyManagement>
  62. <dependencies>
  63. <dependency>
  64. <groupId>com.qdport.cloud</groupId>
  65. <artifactId>qdport-bom</artifactId>
  66. <version>${qdport.cloud.version}</version>
  67. <type>pom</type>
  68. <scope>import</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-dependencies</artifactId>
  73. <version>${spring.boot.version}</version>
  74. <type>pom</type>
  75. <scope>import</scope>
  76. </dependency>
  77. <dependency>
  78. <groupId>io.spring.platform</groupId>
  79. <artifactId>platform-bom</artifactId>
  80. <version>${spring.platform.version}</version>
  81. <type>pom</type>
  82. <scope>import</scope>
  83. </dependency>
  84. </dependencies>
  85. </dependencyManagement>
  86. <build>
  87. <finalName>${artifactId}</finalName>
  88. <plugins>
  89. <plugin>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-maven-plugin</artifactId>
  92. <version>${spring.boot.version}</version>
  93. <executions>
  94. <execution>
  95. <goals>
  96. <goal>repackage</goal>
  97. </goals>
  98. </execution>
  99. </executions>
  100. </plugin>
  101. </plugins>
  102. </build>
  103. <repositories>
  104. <repository>
  105. <id>qdport-release</id>
  106. <name>Release Repository</name>
  107. <url>http://10.236.3.33:8081/repository/maven-public/</url>
  108. </repository>
  109. <repository>
  110. <id>aliyun-repos</id>
  111. <name>Aliyun Repository</name>
  112. <url>https://maven.aliyun.com/repository/public/</url>
  113. <snapshots>
  114. <enabled>false</enabled>
  115. </snapshots>
  116. </repository>
  117. </repositories>
  118. <pluginRepositories>
  119. <pluginRepository>
  120. <id>aliyun-plugin</id>
  121. <name>aliyun-plugin</name>
  122. <url>http://10.236.3.33:8081/repository/maven-public/</url>
  123. <snapshots>
  124. <enabled>false</enabled>
  125. </snapshots>
  126. </pluginRepository>
  127. </pluginRepositories>
  128. </project>