You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							66 lines
						
					
					
						
							1.9 KiB
						
					
					
				
			
		
		
	
	
							66 lines
						
					
					
						
							1.9 KiB
						
					
					
				<?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>
 | 
						|
    <build>
 | 
						|
        <plugins>
 | 
						|
            <plugin>
 | 
						|
                <groupId>org.apache.maven.plugins</groupId>
 | 
						|
                <artifactId>maven-compiler-plugin</artifactId>
 | 
						|
                <configuration>
 | 
						|
                    <source>11</source>
 | 
						|
                    <target>11</target>
 | 
						|
                </configuration>
 | 
						|
            </plugin>
 | 
						|
        </plugins>
 | 
						|
    </build>
 | 
						|
 | 
						|
    <parent>
 | 
						|
        <groupId>org.springframework.boot</groupId>
 | 
						|
        <artifactId>spring-boot-starter-parent</artifactId>
 | 
						|
        <version>2.2.9.RELEASE</version>
 | 
						|
        <relativePath/>
 | 
						|
    </parent>
 | 
						|
 | 
						|
    <groupId>com.hc</groupId>
 | 
						|
    <artifactId>jxjy-education</artifactId>
 | 
						|
    <version>0.0.1-SNAPSHOT</version>
 | 
						|
    <name>jxjy-education</name>
 | 
						|
    <packaging>pom</packaging>
 | 
						|
    <description>Demo project for Spring Boot</description>
 | 
						|
 | 
						|
    <properties>
 | 
						|
        <java.version>11</java.version>
 | 
						|
    </properties>
 | 
						|
 | 
						|
    <modules>
 | 
						|
        <module>jxjy-business</module>
 | 
						|
        <module>jxjy-core</module>
 | 
						|
        <module>jxjy-web</module>
 | 
						|
    </modules>
 | 
						|
 | 
						|
    <dependencies>
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-starter</artifactId>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!--api文档-->
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.spring4all</groupId>
 | 
						|
            <artifactId>swagger-spring-boot-starter</artifactId>
 | 
						|
            <version>1.6.0.RELEASE</version>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.projectlombok</groupId>
 | 
						|
            <artifactId>lombok</artifactId>
 | 
						|
            <version>1.18.24</version>
 | 
						|
            <optional>true</optional>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
    </dependencies>
 | 
						|
 | 
						|
</project>
 |