Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanup after idea plugin #31

Merged
merged 2 commits into from
Dec 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ open class IntegrationTestPlugin : Plugin<Project> {
IntegrationTestTaskConfiguration.apply(project)
TestTaskConfiguration.apply(project)
TestAllTaskConfiguration.apply(project)
IdeaPluginConfiguration.apply(project)
}

companion object {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ internal object IntegrationTestTaskConfiguration {
}

private fun configureKotlinCompilation(project: Project) {
val extension = project.extensions.getByType(KotlinJvmProjectExtension::class.java)
extension.target.compilations.getByName(INTEGRATION_CONFIG_PREFIX) {
val main = extension.target.compilations.getByName(SourceSet.TEST_SOURCE_SET_NAME)
it.associateWith(main)
val kotlin = project.extensions.getByType(KotlinJvmProjectExtension::class.java)
kotlin.target.compilations.getByName(INTEGRATION_CONFIG_PREFIX) {
val test = kotlin.target.compilations.getByName(SourceSet.TEST_SOURCE_SET_NAME)
it.associateWith(test)
}
}
}

This file was deleted.