91-pom 相关的配置,properties,build,repositories

属性配置:

    
        UTF-8
        1.8
        3.1.1
    

build插件配置:

    
        
            
                org.apache.maven.plugins
                maven-compiler-plugin
                3.1
                
                    ${java.version}
                    ${java.version}
                    ${project.build.sourceEncoding}
                
            
        
    

配置maven的库:

    
        
            public
            aliyun nexus
            http://maven.aliyun.com/nexus/content/groups/public/
            
                true
            
        
    

    
        
            public
            aliyun nexus
            http://maven.aliyun.com/nexus/content/groups/public/
            
                true
            
            
                false
            
        
    

maven 依赖指向本地:

 
            com.linewell
            typp-frame-core
            0.0.1-SNAPSHOT
            system
            ${project.basedir}/src/main/resources/lib/typp-frame-core-0.0.1-SNAPSHOT.jar
        

将本地jar包添加到maven仓库
语法:

mvn install:install-file -Dfile=jar包的位置(参数一) -DgroupId=groupId(参数二) -DartifactId=artifactId(参数三) -Dversion=version(参数四) -Dpackaging=jar

实际例子:

mvn install:install-file -Dfile=E:/res/jar_lib/ag777-1.0.jar -DgroupId=ag777 -DartifactId=ag777 -Dversion=1.0 -Dpackaging=jar

你可能感兴趣的:(maven)