do not delete output files corresponding to non-existing sources, if these outputs are already associated with existing sources from other modules that have been already compiled (example: moving some class to a dependent module with the same output root)

This commit is contained in:
Eugene Zhuravlev
2014-04-11 22:18:16 +04:00
parent 45cb352694
commit 4935bbc9ee
10 changed files with 278 additions and 14 deletions
@@ -0,0 +1,15 @@
Compiling files:
moduleA/src/com/ppp/Inner.java
End of files
Cleaning output files:
out/com/ppp/B.class
End of files
Compiling files:
moduleB/src/com/ppp/B.java
End of files
Cleaning output files:
out/com/ppp/B.class
End of files
Compiling files:
moduleB/src/com/ppp/B.java
End of files
@@ -0,0 +1,6 @@
package com.ppp;
public class B {
private Inner inner;
}