113 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			XML
		
	
	
			
		
		
	
	
			113 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			XML
		
	
	
<?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>
 | 
						|
    <parent>
 | 
						|
        <groupId>org.springframework.boot</groupId>
 | 
						|
        <artifactId>spring-boot-starter-parent</artifactId>
 | 
						|
        <version>2.6.6</version>
 | 
						|
        <relativePath/> <!-- lookup parent from repository -->
 | 
						|
    </parent>
 | 
						|
    <groupId>com.yc</groupId>
 | 
						|
    <artifactId>wms</artifactId>
 | 
						|
    <version>0.0.1-SNAPSHOT</version>
 | 
						|
    <name>wms</name>
 | 
						|
    <description>wms</description>
 | 
						|
    <properties>
 | 
						|
        <java.version>8</java.version>
 | 
						|
    </properties>
 | 
						|
    <dependencies>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-starter-web</artifactId>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.projectlombok</groupId>
 | 
						|
            <artifactId>lombok</artifactId>
 | 
						|
            <optional>true</optional>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-starter-data-jpa</artifactId>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-starter-test</artifactId>
 | 
						|
            <scope>test</scope>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.spring4all</groupId>
 | 
						|
            <artifactId>spring-boot-starter-swagger</artifactId>
 | 
						|
            <version>1.5.1.RELEASE</version>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.freemarker</groupId>
 | 
						|
            <artifactId>freemarker</artifactId>
 | 
						|
            <version>2.3.28</version>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.baomidou</groupId>
 | 
						|
            <artifactId>mybatis-plus-generator</artifactId>
 | 
						|
            <version>3.3.2</version>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.baomidou</groupId>
 | 
						|
            <artifactId>mybatis-plus-boot-starter</artifactId>
 | 
						|
            <version>3.5.1</version>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.microsoft.sqlserver</groupId>
 | 
						|
            <artifactId>mssql-jdbc</artifactId>
 | 
						|
            <version>9.4.0.jre8</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>cn.hutool</groupId>
 | 
						|
            <artifactId>hutool-all</artifactId>
 | 
						|
            <version>5.8.21</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>jakarta.persistence</groupId>
 | 
						|
            <artifactId>jakarta.persistence-api</artifactId>
 | 
						|
            <version>2.2.3</version>
 | 
						|
        </dependency>
 | 
						|
        <!-- excel工具 -->
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.apache.poi</groupId>
 | 
						|
            <artifactId>poi-ooxml</artifactId>
 | 
						|
            <version>4.1.2</version>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
 | 
						|
 | 
						|
    </dependencies>
 | 
						|
 | 
						|
    <build>
 | 
						|
        <plugins>
 | 
						|
            <plugin>
 | 
						|
                <groupId>org.springframework.boot</groupId>
 | 
						|
                <artifactId>spring-boot-maven-plugin</artifactId>
 | 
						|
            </plugin>
 | 
						|
            <!-- 跳过单元测试 -->
 | 
						|
            <plugin>
 | 
						|
                <groupId>org.apache.maven.plugins</groupId>
 | 
						|
                <artifactId>maven-surefire-plugin</artifactId>
 | 
						|
                <configuration>
 | 
						|
                    <skipTests>true</skipTests>
 | 
						|
                </configuration>
 | 
						|
            </plugin>
 | 
						|
        </plugins>
 | 
						|
    </build>
 | 
						|
 | 
						|
</project>
 |