mirror of https://github.com/elunez/eladmin
				
				
				
			
		
			
				
	
	
		
			74 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			XML
		
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			2.2 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">
 | 
						|
    <parent>
 | 
						|
        <artifactId>eladmin</artifactId>
 | 
						|
        <groupId>me.zhengjie</groupId>
 | 
						|
        <version>1.5</version>
 | 
						|
    </parent>
 | 
						|
    <modelVersion>4.0.0</modelVersion>
 | 
						|
 | 
						|
    <artifactId>eladmin-system</artifactId>
 | 
						|
 | 
						|
    <properties>
 | 
						|
        <jjwt.version>0.9.1</jjwt.version>
 | 
						|
    </properties>
 | 
						|
 | 
						|
    <dependencies>
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>me.zhengjie</groupId>
 | 
						|
            <artifactId>eladmin-generator</artifactId>
 | 
						|
            <version>1.5</version>
 | 
						|
            <exclusions>
 | 
						|
                <exclusion>
 | 
						|
                    <groupId>me.zhengjie</groupId>
 | 
						|
                    <artifactId>eladmin-common</artifactId>
 | 
						|
                </exclusion>
 | 
						|
            </exclusions>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>me.zhengjie</groupId>
 | 
						|
            <artifactId>eladmin-tools</artifactId>
 | 
						|
            <version>1.5</version>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!--jwt-->
 | 
						|
        <dependency>
 | 
						|
            <groupId>io.jsonwebtoken</groupId>
 | 
						|
            <artifactId>jjwt</artifactId>
 | 
						|
            <version>${jjwt.version}</version>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!--websocket-->
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-starter-websocket</artifactId>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!-- quartz -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.quartz-scheduler</groupId>
 | 
						|
            <artifactId>quartz</artifactId>
 | 
						|
        </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> |