Is it possible to replace text in properties in Ant's build.xml?

前端 未结 5 1926
没有蜡笔的小新
没有蜡笔的小新 2021-01-06 15:41

I have a property, app.version, which is set to 1.2.0 (and, of course, always changing) and need to create zip file with name \"something-ver-1_2_0\". Is this possible?

5条回答
  •  隐瞒了意图╮
    2021-01-06 16:39

    It's possible using the zip task

    
    
        
    
    
        
    
    

    For more information about the zip task: http://ant.apache.org/manual/Tasks/zip.html

提交回复
热议问题