@@ -116,11 +116,11 @@ public G.CompilationUnit visitCompilationUnit(G.CompilationUnit cu, ExecutionCon
116116 Set <String > runtimeConfigurations = getTransitiveDependencyConfiguration (gp , SUN_JAXWS_RUNTIME_GROUP , SUN_JAXWS_RUNTIME_ARTIFACT );
117117 if (runtimeConfigurations .isEmpty ()) {
118118 if (gp .getConfiguration ("compileOnly" ) != null ) {
119- g = (G .CompilationUnit ) new org .openrewrite .gradle .AddDependencyVisitor (SUN_JAXWS_RUNTIME_GROUP , SUN_JAXWS_RUNTIME_ARTIFACT , "2.3.x" , null , "compileOnly" , null , null , null , null )
119+ g = (G .CompilationUnit ) new org .openrewrite .gradle .AddDependencyVisitor (SUN_JAXWS_RUNTIME_GROUP , SUN_JAXWS_RUNTIME_ARTIFACT , "2.3.x" , null , "compileOnly" , null , null , null , null , null )
120120 .visitNonNull (g , ctx );
121121 }
122122 if (gp .getConfiguration ("testImplementation" ) != null ) {
123- g = (G .CompilationUnit ) new org .openrewrite .gradle .AddDependencyVisitor (SUN_JAXWS_RUNTIME_GROUP , SUN_JAXWS_RUNTIME_ARTIFACT , "2.3.x" , null , "testImplementation" , null , null , null , null )
123+ g = (G .CompilationUnit ) new org .openrewrite .gradle .AddDependencyVisitor (SUN_JAXWS_RUNTIME_GROUP , SUN_JAXWS_RUNTIME_ARTIFACT , "2.3.x" , null , "testImplementation" , null , null , null , null , null )
124124 .visitNonNull (g , ctx );
125125 }
126126 } else {
@@ -131,7 +131,7 @@ public G.CompilationUnit visitCompilationUnit(G.CompilationUnit cu, ExecutionCon
131131 GradleDependencyConfiguration runtimeGdc = gp .getConfiguration (runtimeConfiguration );
132132 List <GradleDependencyConfiguration > runtimeTransitives = gp .configurationsExtendingFrom (runtimeGdc , true );
133133 if (apiTransitives .stream ().noneMatch (runtimeTransitives ::contains )) {
134- g = (G .CompilationUnit ) new org .openrewrite .gradle .AddDependencyVisitor (SUN_JAXWS_RUNTIME_GROUP , SUN_JAXWS_RUNTIME_ARTIFACT , "2.3.x" , null , apiConfiguration , null , null , null , null )
134+ g = (G .CompilationUnit ) new org .openrewrite .gradle .AddDependencyVisitor (SUN_JAXWS_RUNTIME_GROUP , SUN_JAXWS_RUNTIME_ARTIFACT , "2.3.x" , null , apiConfiguration , null , null , null , null , null )
135135 .visitNonNull (g , ctx );
136136 }
137137 }
0 commit comments