File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
plugin-test/src/test/groovy/org/gradle/github/dependencygraph
plugin/src/main/kotlin/org/gradle/github/dependencygraph Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -80,6 +80,10 @@ abstract class BaseExtractorTest extends Specification {
8080 return getTestDirectory(). file(path)
8181 }
8282
83+ protected BuildResult run () {
84+ return run(" GitHubDependencyGraphPlugin_generateDependencyGraph" )
85+ }
86+
8387 protected BuildResult run (String ... names ) {
8488 executer. withTasks(names)
8589 result = getExecuter(). run()
Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ class ForceDependencyResolutionPlugin : Plugin<Gradle> {
1212 override fun apply (gradle : Gradle ) {
1313 gradle.projectsEvaluated {
1414 val resolveAllDeps = gradle.rootProject.tasks.register(GENERATE_TASK )
15- gradle.rootProject.defaultTasks = listOf (GENERATE_TASK )
1615
1716 // Depend on "dependencies" task in all projects
1817 gradle.allprojects { project ->
You can’t perform that action at this time.
0 commit comments