| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 | <?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">    <parent>        <artifactId>gubersail-platform</artifactId>        <groupId>org.springblade</groupId>        <version>2.8.2.RELEASE</version>    </parent>    <modelVersion>4.0.0</modelVersion>    <artifactId>blade-service-api</artifactId>    <name>${project.artifactId}</name>    <version>2.8.2.RELEASE</version>    <packaging>pom</packaging>    <description>BladeX 微服务API集合</description>    <modules>        <module>blade-desk-api</module>        <module>blade-dict-api</module>        <module>blade-scope-api</module>        <module>blade-system-api</module>        <module>blade-user-api</module>        <module>blade-client-api</module>        <module>blade-u9cloud-api</module>        <module>gubersail-dealer-admin-api</module>        <module>blade-factory-api</module>        <module>gubersail-dealer-app-api</module>        <module>gubersail-shop-app-api</module>    </modules>    <dependencies>        <dependency>            <groupId>org.springblade</groupId>            <artifactId>blade-starter-mybatis</artifactId>        </dependency>        <dependency>            <groupId>org.springblade</groupId>            <artifactId>blade-starter-tenant</artifactId>        </dependency>        <dependency>            <groupId>org.springframework.cloud</groupId>            <artifactId>spring-cloud-starter-openfeign</artifactId>        </dependency>        <dependency>            <groupId>org.springblade</groupId>            <artifactId>blade-starter-excel</artifactId>        </dependency>        <dependency>            <groupId>io.springfox</groupId>            <artifactId>springfox-swagger2</artifactId>            <exclusions>                <exclusion>                    <groupId>io.swagger</groupId>                    <artifactId>swagger-models</artifactId>                </exclusion>            </exclusions>        </dependency>        <dependency>            <groupId>io.swagger</groupId>            <artifactId>swagger-models</artifactId>        </dependency>        <dependency>            <groupId>org.springblade</groupId>            <artifactId>blade-core-auto</artifactId>            <scope>provided</scope>        </dependency>    </dependencies>    <build>        <plugins>            <plugin>                <groupId>org.springframework.boot</groupId>                <artifactId>spring-boot-maven-plugin</artifactId>                <configuration>                    <skip>true</skip>                    <finalName>${project.name}</finalName>                </configuration>            </plugin>        </plugins>    </build></project>
 |