Rename: jps-plugin -> jps/jps-plugin

This commit is contained in:
Nikita Bobko
2021-12-29 19:21:54 +01:00
parent d8f99d8974
commit db7472a376
2317 changed files with 0 additions and 0 deletions
@@ -0,0 +1,4 @@
module1->
module2->module1
module3->module2
module4->module3
@@ -0,0 +1,2 @@
change module2 and disable incremental compilation
change module2 again
@@ -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
------------------------------------------
@@ -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
@@ -0,0 +1,3 @@
package foo
class Z
@@ -0,0 +1,3 @@
package foo
inline fun a(): Int = 0
@@ -0,0 +1,3 @@
package foo
inline fun a(): Int = 1
@@ -0,0 +1,3 @@
package foo
inline fun a(): Int = 2
@@ -0,0 +1,3 @@
package foo
fun b(): Int = a()
@@ -0,0 +1,3 @@
package foo
fun c(): Int = b()
@@ -0,0 +1,3 @@
package foo
class D
@@ -0,0 +1,3 @@
package foo
class E