Gradle - Include Properties File

前端 未结 9 1043
天命终不由人
天命终不由人 2020-12-08 04:13

How would I include a properties file in Gradle?

For example in Ant, I could do the following:



        
9条回答
  •  温柔的废话
    2020-12-08 04:20

    In your task (jar or any other task) you can do this way to include any file into the destination folder

    jar{
    
        //jar task related code
    
       from("src/main/......(source)") { 
         include 'xxx.properties' into('com/.....(destination)') 
    
       }
    
    }
    

提交回复
热议问题