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

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


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

commit b20e2539b4e9579ac286598291f956b6a665bc80
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 ef1872b7d7a..37d6a2faf0e 100644
--- a/build.gradle
+++ b/build.gradle
@@ -2741,7 +2741,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