idea maven 构建本地jar包及pom文件

1、设置模块build 本地输出路径


    compile
    
        
            ${basedir}/src/main/resources
            
                **/**
            
        
    
    
        
            org.apache.maven.plugins
            maven-jar-plugin
            3.1.0
            
                
                    
                        true
                        lib/
                    
                
                D:\Maven\apache-maven-3.8.4\repository\
            
        
    

idea maven 构建本地jar包及pom文件_第1张图片

2、父项目pom 文件,build 项、repository 项 设置


    compile
    
        
            src/main/java
            
                **/*.tql
            
        
    
    
        
            org.apache.maven.plugins
            maven-surefire-plugin
            3.0.0-M5
            
                true
            
        
        
            org.apache.maven.plugins
            maven-compiler-plugin
            3.3
            
                ${project.build.sourceEncoding}
                ${maven.compiler.source}
                ${maven.compiler.target}
            
        
        
            org.apache.maven.plugins
            maven-jar-plugin
            3.1.0
            
                
                    **/node_modules/**
                
                
                    
                        true
                        lib/
                    
                
            
        
    


    
        releases
        Releases
        D://Maven//apache-maven-3.8.4//repository/
        
            true
            always
        
        
            true
            always
        
    
    
        snapshots
        Snapshots
        D://Maven//apache-maven-3.8.4//repository/
        
            true
            always
        
        
            true
            always
        
    


    
        releases
        Releases
        D://Maven//apache-maven-3.8.4//repository/
        
            true
        
        
            true
        
    

3、每个模块先 clean 命令、再install命令

idea maven 构建本地jar包及pom文件_第2张图片

4、输出文件

idea maven 构建本地jar包及pom文件_第3张图片

 

你可能感兴趣的:(intellij-idea,maven,jar)