nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1diff --git a/pkl-gradle/pkl-gradle.gradle.kts b/pkl-gradle/pkl-gradle.gradle.kts
2index 08f0e8ca..a16c7073 100644
3--- a/pkl-gradle/pkl-gradle.gradle.kts
4+++ b/pkl-gradle/pkl-gradle.gradle.kts
5@@ -58,7 +58,7 @@ sourceSets {
6 // if `compileClasspath` is filtered, causing "unresolved reference" errors in IntelliJ.
7 // As a workaround, don't perform filtering for IntelliJ (import).
8 if (System.getProperty("idea.sync.active") == null) {
9- compileClasspath = compileClasspath.filter { !(it.path.contains("dists")) }
10+ compileClasspath = compileClasspath.filter { !(it.path.contains("@gradle@") || it.path.contains("generated-gradle-jars/gradle-api-")) }
11 }
12 }
13 }
14