Maven构建可执行jar,输出构建时间到MANIFEST.MF中

使用插件的方式

          
                org.codehaus.mojo
                build-helper-maven-plugin
                3.0.0
                
                    
                        timestamp-property
                        
                            timestamp-property
                        
                    
                
                
                    current.time
                    yyyyMMddHHmmss
                    GMT+8
                
            
            
                maven-jar-plugin
                2.6
                
                    
                        false
                        
                            ${current.time}
                        
                        
                            platform.MainApplication
                            true
                            lib/
                        
                    
                    
                        test
                    
                    target/classes/
                
            

你可能感兴趣的:(Maven构建可执行jar,输出构建时间到MANIFEST.MF中)