This is an automated email from the ASF dual-hosted git repository.

mimaison pushed a commit to branch 3.4
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/3.4 by this push:
     new 55d7519cf7c MINOR: Remove unnecessary call to asCollection causing 
eager dependency resolution (#13149)
55d7519cf7c is described below

commit 55d7519cf7c12ae849b88173356581f102887f66
Author: Eric Haag <[email protected]>
AuthorDate: Mon Feb 6 04:28:02 2023 -0600

    MINOR: Remove unnecessary call to asCollection causing eager dependency 
resolution (#13149)
    
    
    Reviewers: Mickael Maison <[email protected]>, Nelson Osacky
---
 build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build.gradle b/build.gradle
index d5d9ffcbf38..e50de72a718 100644
--- a/build.gradle
+++ b/build.gradle
@@ -2732,7 +2732,7 @@ project(':connect:runtime') {
   task genConnectOpenAPIDocs(type: 
io.swagger.v3.plugins.gradle.tasks.ResolveTask, dependsOn: 
setVersionInOpenAPISpec) {
     classpath = sourceSets.main.runtimeClasspath
 
-    buildClasspath = classpath + configurations.swagger.asCollection()
+    buildClasspath = classpath + configurations.swagger
     outputFileName = 'connect_rest'
     outputFormat = 'YAML'
     prettyPrint = 'TRUE'

Reply via email to