Kotlin incremental cache version change should not affect java only modules

This commit is contained in:
Alexey Tsvetkov
2015-11-19 13:48:39 +03:00
parent b1b0da5228
commit a447c39f69
120 changed files with 760 additions and 137 deletions
@@ -0,0 +1 @@
class A {}
@@ -0,0 +1 @@
class A {}
@@ -0,0 +1,5 @@
package test
fun f() {
other.other()
}
@@ -0,0 +1,5 @@
package test
fun g() {
other.other()
}
@@ -0,0 +1,17 @@
Cleaning output files:
out/production/module/A.class
End of files
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/other/OtherKt.class
out/production/module/test/AKt.class
out/production/module/test/BKt.class
End of files
Compiling files:
src/a.kt
src/b.kt
src/other.kt
End of files
Compiling files:
src/A.java
End of files
@@ -0,0 +1,17 @@
Cleaning output files:
out/production/module/A.class
End of files
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/other/OtherKt.class
out/production/module/test/AKt.class
out/production/module/test/BKt.class
End of files
Compiling files:
src/a.kt
src/b.kt
src/other.kt
End of files
Compiling files:
src/A.java
End of files
@@ -0,0 +1,4 @@
package other
fun other() {
}