Plugins in Maven and POM.xml

前端 未结 7 1170
无人及你
无人及你 2021-01-30 20:27

I just started using Maven and I read that plugins are additional components that can be used.
A typical structure of pom.xml file is



        
7条回答
  •  别那么骄傲
    2021-01-30 20:35

    
        org.koshik.javabrains
        JarName (A fldernamed JarName was created) 
        1.0-SNAPSHOT
        jar
    
        JarName
        http://maven.apache.org
    
        
            UTF-8
        
    
        
            
                
                    org.jibx
                    jibx-maven-plugin
                    1.2.4
                    
                        
                            
                                bind
                            
                        
                    
                
            
        
    
        
            
                junit
                junit
                3.8.1
                test
            
        
    
    

    You can also place plugins in the section of if you use maven profiles. The order doesn't matter.

提交回复
热议问题