What is the best way to avoid maven-jar?

后端 未结 9 2202
后悔当初
后悔当初 2020-11-27 05:40

I am using a different plugin (ant4eclipse) to jar my files. What is the best way to avoid the maven-jar plugin from executing?

  • I tried to remove the <
9条回答
  •  轮回少年
    2020-11-27 06:08

    In my case, I only wanted to disable the jar plugin because the jar was empty. You can use the skipIfEmpty option in the plugin configuration

    
        org.apache.maven.plugins
        maven-jar-plugin
        3.0.2
        
            true
        
    
    

提交回复
热议问题