diff --git a/build.gradle.kts b/build.gradle.kts index ace6fc8e5c4..afa56f06a5a 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -111,15 +111,6 @@ extra["ideaUltimatePluginDir"] = project.file(ideaUltimatePluginDir) extra["cidrPluginDir"] = project.file(cidrPluginDir) extra["isSonatypeRelease"] = false -Properties().apply { - load(File(rootDir, "resources", "kotlinManifest.properties").reader()) - forEach { - val key = it.key - if (key != null && key is String) - extra[key] = it.value - } -} - extra["JDK_16"] = jdkPath("1.6") extra["JDK_17"] = jdkPath("1.7") extra["JDK_18"] = jdkPath("1.8") @@ -262,11 +253,6 @@ apply { } } -fun Project.allprojectsRecursive(body: Project.() -> Unit) { - this.body() - this.subprojects { allprojectsRecursive(body) } -} - fun Task.listConfigurationContents(configName: String) { doFirst { project.configurations.findByName(configName)?.let { diff --git a/build.gradle.kts.182 b/build.gradle.kts.182 index 2aeb77f9c0b..fd93e6d075f 100644 --- a/build.gradle.kts.182 +++ b/build.gradle.kts.182 @@ -111,15 +111,6 @@ extra["ideaUltimatePluginDir"] = project.file(ideaUltimatePluginDir) extra["cidrPluginDir"] = project.file(cidrPluginDir) extra["isSonatypeRelease"] = false -Properties().apply { - load(File(rootDir, "resources", "kotlinManifest.properties").reader()) - forEach { - val key = it.key - if (key != null && key is String) - extra[key] = it.value - } -} - extra["JDK_16"] = jdkPath("1.6") extra["JDK_17"] = jdkPath("1.7") extra["JDK_18"] = jdkPath("1.8") @@ -261,11 +252,6 @@ apply { } } -fun Project.allprojectsRecursive(body: Project.() -> Unit) { - this.body() - this.subprojects { allprojectsRecursive(body) } -} - fun Task.listConfigurationContents(configName: String) { doFirst { project.configurations.findByName(configName)?.let {