[JPS] Ignore classpath from facets to exclude jars from gradle build

Reimport after `./gradlew build` adds jars from gradle's `build/libs` to facet's classpath. That causes problems with JPS build, because it doesn't see changes in out folder, but see unchanged jar, so changes don't apply.

#KT-51873 Fixed

Merge-request: KT-MR-6018
Merged-by: Aleksei Cherepanov <aleksei.cherepanov@jetbrains.com>
This commit is contained in:
Aleksei.Cherepanov
2022-04-18 11:20:40 +00:00
committed by Space
parent e0029b14ee
commit bdf229bc5c
8 changed files with 101 additions and 0 deletions
@@ -0,0 +1,4 @@
abstract class Base {
abstract fun doSmth()
abstract fun doSmthElse()
}