68 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			2.4 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 | 
						|
    <modelVersion>4.0.0</modelVersion>
 | 
						|
 | 
						|
    <groupId>com.heibaiying</groupId>
 | 
						|
    <artifactId>spring-mongodb</artifactId>
 | 
						|
    <version>1.0-SNAPSHOT</version>
 | 
						|
 | 
						|
    <properties>
 | 
						|
        <spring-base-version>5.1.3.RELEASE</spring-base-version>
 | 
						|
    </properties>
 | 
						|
 | 
						|
    <dependencies>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework</groupId>
 | 
						|
            <artifactId>spring-context</artifactId>
 | 
						|
            <version>${spring-base-version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework</groupId>
 | 
						|
            <artifactId>spring-beans</artifactId>
 | 
						|
            <version>${spring-base-version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework</groupId>
 | 
						|
            <artifactId>spring-core</artifactId>
 | 
						|
            <version>${spring-base-version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework</groupId>
 | 
						|
            <artifactId>spring-web</artifactId>
 | 
						|
            <version>${spring-base-version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework</groupId>
 | 
						|
            <artifactId>spring-webmvc</artifactId>
 | 
						|
            <version>${spring-base-version}</version>
 | 
						|
        </dependency>
 | 
						|
        <!--spring mongodb 整合依赖-->
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.data</groupId>
 | 
						|
            <artifactId>spring-data-mongodb</artifactId>
 | 
						|
            <version>2.1.3.RELEASE</version>
 | 
						|
        </dependency>
 | 
						|
        <!--单元测试相关包-->
 | 
						|
        <dependency>
 | 
						|
            <groupId>junit</groupId>
 | 
						|
            <artifactId>junit</artifactId>
 | 
						|
            <version>4.12</version>
 | 
						|
            <scope>test</scope>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework</groupId>
 | 
						|
            <artifactId>spring-test</artifactId>
 | 
						|
            <version>${spring-base-version}</version>
 | 
						|
            <scope>test</scope>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.projectlombok</groupId>
 | 
						|
            <artifactId>lombok</artifactId>
 | 
						|
            <version>1.18.4</version>
 | 
						|
            <scope>provided</scope>
 | 
						|
        </dependency>
 | 
						|
    </dependencies>
 | 
						|
 | 
						|
</project> |