Rename: jps-plugin -> jps/jps-plugin
This commit is contained in:
Vendored
+4
@@ -0,0 +1,4 @@
|
||||
module1->
|
||||
module2->module1
|
||||
module3->module2
|
||||
module4->module3
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
change module2 and disable incremental compilation
|
||||
change module2 again
|
||||
+64
@@ -0,0 +1,64 @@
|
||||
================ Step #1 change module2 and disable incremental compilation =================
|
||||
|
||||
Lookups cache are SHOULD_BE_CLEARED
|
||||
Local cache for Module 'module1' production are SHOULD_BE_CLEARED
|
||||
Local cache for Module 'module2' production are SHOULD_BE_CLEARED
|
||||
Local cache for Module 'module3' production are SHOULD_BE_CLEARED
|
||||
Local cache for Module 'module4' production are SHOULD_BE_CLEARED
|
||||
Building module1
|
||||
Exit code: NOTHING_DONE
|
||||
------------------------------------------
|
||||
Building module2
|
||||
Cleaning output files:
|
||||
out/production/module2/META-INF/module2.kotlin_module
|
||||
out/production/module2/foo/AKt.class
|
||||
End of files
|
||||
Exit code: CHUNK_REBUILD_REQUIRED
|
||||
------------------------------------------
|
||||
Cleaning output files:
|
||||
out/production/module2/foo/BKt.class
|
||||
out/production/module2/foo/CKt.class
|
||||
End of files
|
||||
Compiling files:
|
||||
module2/src/a.kt
|
||||
module2/src/b.kt
|
||||
module2/src/c.kt
|
||||
End of files
|
||||
Exit code: OK
|
||||
------------------------------------------
|
||||
Building module3
|
||||
Exit code: NOTHING_DONE
|
||||
------------------------------------------
|
||||
Building module4
|
||||
Exit code: NOTHING_DONE
|
||||
------------------------------------------
|
||||
|
||||
================ Step #2 change module2 again =================
|
||||
|
||||
Building module1
|
||||
Exit code: NOTHING_DONE
|
||||
------------------------------------------
|
||||
Building module2
|
||||
Cleaning output files:
|
||||
out/production/module2/META-INF/module2.kotlin_module
|
||||
out/production/module2/foo/AKt.class
|
||||
End of files
|
||||
Exit code: CHUNK_REBUILD_REQUIRED
|
||||
------------------------------------------
|
||||
Cleaning output files:
|
||||
out/production/module2/foo/BKt.class
|
||||
out/production/module2/foo/CKt.class
|
||||
End of files
|
||||
Compiling files:
|
||||
module2/src/a.kt
|
||||
module2/src/b.kt
|
||||
module2/src/c.kt
|
||||
End of files
|
||||
Exit code: OK
|
||||
------------------------------------------
|
||||
Building module3
|
||||
Exit code: NOTHING_DONE
|
||||
------------------------------------------
|
||||
Building module4
|
||||
Exit code: NOTHING_DONE
|
||||
------------------------------------------
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
kotlin-data-container
|
||||
Module 'module1' production
|
||||
jvm-build-meta-info.txt
|
||||
Module 'module1' tests
|
||||
Module 'module2' production
|
||||
jvm-build-meta-info.txt
|
||||
Module 'module2' tests
|
||||
Module 'module3' production
|
||||
jvm-build-meta-info.txt
|
||||
Module 'module3' tests
|
||||
Module 'module4' production
|
||||
jvm-build-meta-info.txt
|
||||
Module 'module4' tests
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
package foo
|
||||
|
||||
class Z
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
package foo
|
||||
|
||||
inline fun a(): Int = 0
|
||||
Vendored
+3
@@ -0,0 +1,3 @@
|
||||
package foo
|
||||
|
||||
inline fun a(): Int = 1
|
||||
Vendored
+3
@@ -0,0 +1,3 @@
|
||||
package foo
|
||||
|
||||
inline fun a(): Int = 2
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
package foo
|
||||
|
||||
fun b(): Int = a()
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
package foo
|
||||
|
||||
fun c(): Int = b()
|
||||
+1
@@ -0,0 +1 @@
|
||||
off
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
package foo
|
||||
|
||||
class D
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
package foo
|
||||
|
||||
class E
|
||||
Reference in New Issue
Block a user