pom.xml 3.8 KB

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