| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.qdport</groupId>
- <artifactId>qdport-boot-demo</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <name>qdport-boot-demo</name>
- <description>demo project for qdport</description>
- <properties>
- <java.version>1.8</java.version>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <qdport-boot.project.version>v20240814-RELEASE</qdport-boot.project.version>
- <qdport.cloud.version>1.1-SNAPSHOT</qdport.cloud.version>
- <spring.boot.version>2.7.1</spring.boot.version>
- <spring.platform.version>Cairo-SR8</spring.platform.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>com.qdport</groupId>
- <artifactId>qdport-module-auth</artifactId>
- <version>${qdport-boot.project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.qdport</groupId>
- <artifactId>qdport-module-generator</artifactId>
- <version>${qdport-boot.project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.qdport</groupId>
- <artifactId>qdport-module-resource</artifactId>
- <version>${qdport-boot.project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.qdport</groupId>
- <artifactId>qdport-module-system</artifactId>
- <version>${qdport-boot.project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.qdport</groupId>
- <artifactId>qdport-module-workflow</artifactId>
- <version>${qdport-boot.project.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- <!--lombok插件-->
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- </dependency>
- </dependencies>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>com.qdport.cloud</groupId>
- <artifactId>qdport-bom</artifactId>
- <version>${qdport.cloud.version}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-dependencies</artifactId>
- <version>${spring.boot.version}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- <dependency>
- <groupId>io.spring.platform</groupId>
- <artifactId>platform-bom</artifactId>
- <version>${spring.platform.version}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <build>
- <finalName>${artifactId}</finalName>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <version>${spring.boot.version}</version>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- <repositories>
- <repository>
- <id>qdport-release</id>
- <name>Release Repository</name>
- <url>http://10.236.3.33:8081/repository/maven-public/</url>
- </repository>
- <repository>
- <id>aliyun-repos</id>
- <name>Aliyun Repository</name>
- <url>https://maven.aliyun.com/repository/public/</url>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </repository>
- </repositories>
- <pluginRepositories>
- <pluginRepository>
- <id>aliyun-plugin</id>
- <name>aliyun-plugin</name>
- <url>http://10.236.3.33:8081/repository/maven-public/</url>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </pluginRepository>
- </pluginRepositories>
- </project>
|