Warning: modified in the future

后端 未结 13 2442
挽巷
挽巷 2021-02-08 12:05

I am getting the warning

Warning: sendmailpm.jsp modified in the future. 

What does this mean?

13条回答
  •  鱼传尺愫
    2021-02-08 12:56

    During an Ant build, this warning can be output during a task.

    [copy] Warning: foo\bar.txt modified in the future.
    

    Ant's task by default won't copy files if the destination files are newer than the source. This saves much time and disk I/O. However you can override this behavior with the option . This tells Ant that you know what you're doing; overwrite the destination files regardless of their modification date. This will also suppress the warning.

提交回复
热议问题