| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 | <?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>yami-shop</artifactId>        <groupId>com.yami.shop</groupId>        <version>0.0.1-SNAPSHOT</version>    </parent>    <build>        <plugins>            <plugin>                <groupId>org.apache.maven.plugins</groupId>                <artifactId>maven-compiler-plugin</artifactId>                <configuration>                    <source>9</source>                    <target>9</target>                </configuration>            </plugin>        </plugins>    </build>    <modelVersion>4.0.0</modelVersion>    <artifactId>yami-shop-service</artifactId>    <dependencies>        <dependency>            <groupId>com.yami.shop</groupId>            <artifactId>yami-shop-bean</artifactId>            <version>${yami.shop.version}</version>        </dependency>        <dependency>            <groupId>com.yami.shop</groupId>            <artifactId>yami-shop-mp-comment</artifactId>            <version>${yami.shop.version}</version>        </dependency>        <dependency>            <groupId>org.springframework.security</groupId>            <artifactId>spring-security-core</artifactId>            <version>5.3.3.RELEASE</version>            <scope>compile</scope>        </dependency>        <dependency>            <groupId>org.apache.poi</groupId>            <artifactId>poi-ooxml</artifactId>            <version>3.17</version>            <scope>compile</scope>        </dependency>    </dependencies></project>
 |