-
Notifications
You must be signed in to change notification settings - Fork 274
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
Use Relative Sensitivity for GenerateProtoTask, use name only sensitivity for classpath. #293
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,6 @@ | |
package com.google.protobuf.gradle | ||
|
||
import com.google.common.collect.ImmutableList | ||
|
||
import org.gradle.api.Action | ||
import org.gradle.api.GradleException | ||
import org.gradle.api.Plugin | ||
|
@@ -42,6 +41,7 @@ import org.gradle.api.file.SourceDirectorySet | |
import org.gradle.api.internal.file.FileResolver | ||
import org.gradle.api.logging.LogLevel | ||
import org.gradle.api.plugins.AppliedPlugin | ||
import org.gradle.api.tasks.PathSensitivity | ||
import org.gradle.api.tasks.SourceSet | ||
|
||
import javax.inject.Inject | ||
|
@@ -329,7 +329,8 @@ class ProtobufPlugin implements Plugin<Project> { | |
task = project.tasks.create(extractProtosTaskName, ProtobufExtract) { | ||
description = "Extracts proto files/dependencies specified by 'protobuf' configuration" | ||
destDir = getExtractedProtosDir(sourceSetName) as File | ||
inputs.files project.configurations[Utils.getConfigName(sourceSetName, 'protobuf')] | ||
inputs.files(project.configurations[Utils.getConfigName(sourceSetName, 'protobuf')]) | ||
.withPathSensitivity(PathSensitivity.NAME_ONLY) | ||
isTest = Utils.isTest(sourceSetName) | ||
} | ||
} | ||
|
@@ -359,6 +360,7 @@ class ProtobufPlugin implements Plugin<Project> { | |
destDir = getExtractedIncludeProtosDir(sourceSetOrVariantName) as File | ||
inputs.files (compileClasspathConfiguration | ||
?: project.configurations[Utils.getConfigName(sourceSetOrVariantName, 'compile')]) | ||
.withPathSensitivity(PathSensitivity.NAME_ONLY) | ||
|
||
// TL; DR: Make protos in 'test' sourceSet able to import protos from the 'main' | ||
// sourceSet. Sub-configurations, e.g., 'testCompile' that extends 'compile', don't | ||
|
@@ -379,7 +381,8 @@ class ProtobufPlugin implements Plugin<Project> { | |
// 'resources' of the output of 'main', in which the source protos are placed. This is | ||
// nicer than the ad-hoc solution that Android has, because it works for any extended | ||
// configuration, not just 'testCompile'. | ||
inputs.files getSourceSets()[sourceSetOrVariantName].compileClasspath | ||
inputs.files (getSourceSets()[sourceSetOrVariantName].compileClasspath) | ||
.withPathSensitivity(PathSensitivity.NAME_ONLY) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I suppose this would also be necessary in There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Added! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There's actually a lot more places this could possibly be added in |
||
} | ||
isTest = Utils.isTest(sourceSetOrVariantName) | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should this still be
compile
or should it be changed toimplementation
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was changed a long time ago in #366