Maven not recognising 'configuration' tag in pom.xml

后端 未结 1 1545
南方客
南方客 2021-01-22 06:13

I am trying to put this in my pom.xml-


  
    
  com.limetray.helper.App
         


        
1条回答
  •  情歌与酒
    2021-01-22 06:46

    The snippet you have posted belongs inside a tag. Specifically, it belongs inside the Apache Maven Jar Plugin. Refer to the sample below to get an idea of what you are doing wrong.

    
        
            
                org.apache.maven.plugins
                maven-jar-plugin
                3.0.2
                
                    
                        
                            com.limetray.helper.App
                        
                    
                
            
        
    
    

    Refer to the Apache Maven Jar Plugin documentation here: https://maven.apache.org/plugins/maven-jar-plugin/index.html

    0 讨论(0)
提交回复
热议问题