Skip to content

Commit 27ec637

Browse files
feat: remove hard-coded paths on AccessorProxyGenerator
1 parent 1fafd01 commit 27ec637

14 files changed

Lines changed: 64 additions & 39 deletions

File tree

common/gradle.lockfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ org.antlr:antlr4-runtime:4.7.2=pmd
3636
org.antlr:antlr4-runtime:4.8-1=checkstyle
3737
org.apache.bcel:bcel:6.5.0=spotbugs
3838
org.apache.commons:commons-lang3:3.12.0=spotbugs
39-
org.apache.commons:commons-lang3:3.14.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
39+
org.apache.commons:commons-lang3:3.17.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4040
org.apache.commons:commons-lang3:3.8.1=pmd
4141
org.apache.commons:commons-text:1.10.0=spotbugs
42-
org.apache.commons:commons-text:1.12.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
42+
org.apache.commons:commons-text:1.13.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4343
org.apache.groovy:groovy-bom:4.0.6=testCompileClasspath,testRuntimeClasspath
4444
org.apache.groovy:groovy:4.0.6=testCompileClasspath,testRuntimeClasspath
4545
org.apache.httpcomponents.client5:httpclient5:5.1.3=spotbugs

context/gradle.lockfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ com.google.guava:guava:31.1-jre=compileClasspath,runtimeClasspath,testCompileCla
2323
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2424
com.google.j2objc:j2objc-annotations:1.3=checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2525
com.puppycrawl.tools:checkstyle:8.29=checkstyle
26+
com.squareup:javapoet:1.13.0=runtimeClasspath,testRuntimeClasspath
2627
commons-beanutils:commons-beanutils:1.9.4=checkstyle
2728
commons-codec:commons-codec:1.15=spotbugs
2829
commons-collections:commons-collections:3.2.2=checkstyle
@@ -46,10 +47,10 @@ org.antlr:antlr4-runtime:4.7.2=pmd
4647
org.antlr:antlr4-runtime:4.8-1=checkstyle
4748
org.apache.bcel:bcel:6.5.0=spotbugs
4849
org.apache.commons:commons-lang3:3.12.0=spotbugs
49-
org.apache.commons:commons-lang3:3.14.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
50+
org.apache.commons:commons-lang3:3.17.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
5051
org.apache.commons:commons-lang3:3.8.1=pmd
5152
org.apache.commons:commons-text:1.10.0=spotbugs
52-
org.apache.commons:commons-text:1.12.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
53+
org.apache.commons:commons-text:1.13.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
5354
org.apache.groovy:groovy-bom:4.0.6=testCompileClasspath,testRuntimeClasspath
5455
org.apache.groovy:groovy:4.0.6=testCompileClasspath,testRuntimeClasspath
5556
org.apache.httpcomponents.client5:httpclient5:5.1.3=spotbugs

gateway-generator/gradle.lockfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ org.antlr:antlr4-runtime:4.7.2=pmd
5959
org.antlr:antlr4-runtime:4.8-1=checkstyle
6060
org.apache.bcel:bcel:6.5.0=spotbugs
6161
org.apache.commons:commons-lang3:3.12.0=spotbugs
62-
org.apache.commons:commons-lang3:3.14.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
62+
org.apache.commons:commons-lang3:3.17.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
6363
org.apache.commons:commons-lang3:3.8.1=pmd
6464
org.apache.commons:commons-text:1.10.0=spotbugs
65-
org.apache.commons:commons-text:1.12.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
65+
org.apache.commons:commons-text:1.13.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
6666
org.apache.groovy:groovy-bom:4.0.6=testCompileClasspath,testRuntimeClasspath
6767
org.apache.groovy:groovy:4.0.6=testCompileClasspath,testRuntimeClasspath
6868
org.apache.httpcomponents.client5:httpclient5:5.1.3=spotbugs

gateway-generator/src/main/java/com/mx/path/api/AccessorProxyGenerator.java

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,12 @@
1818
import com.mx.path.core.common.gateway.GatewayAPI;
1919
import com.mx.path.core.common.lang.Strings;
2020
import com.mx.path.core.common.reflection.Annotations;
21+
import com.mx.path.core.utility.reflection.ClassHelper;
2122
import com.mx.path.gateway.accessor.Accessor;
2223
import com.mx.path.gateway.accessor.AccessorConfiguration;
24+
import com.mx.path.gateway.configuration.AccessorConstructionContext;
25+
import com.mx.path.gateway.configuration.AccessorProxy;
26+
import com.mx.path.gateway.configuration.AccessorProxyMap;
2327
import com.squareup.javapoet.ClassName;
2428
import com.squareup.javapoet.CodeBlock;
2529
import com.squareup.javapoet.FieldSpec;
@@ -42,7 +46,7 @@ public class AccessorProxyGenerator {
4246
/**
4347
* Build new {@link AccessorProxyGenerator} instance with provided processing environment.
4448
*
45-
* @param processingEnvironment processing environment to interact with {@link Filer} file generation.
49+
q* @param processingEnvironment processing environment to interact with {@link Filer} file generation.
4650
*/
4751
public AccessorProxyGenerator(ProcessingEnvironment processingEnvironment) {
4852
this.filer = processingEnvironment.getFiler();
@@ -61,7 +65,7 @@ public final CodeBlock generateAll(Class<? extends Accessor> rootAccessor) throw
6165
}
6266
accessorProxyMappings = CodeBlock.builder();
6367
recursiveGenerate(rootAccessor);
64-
accessorProxyMappings.addStatement("$T.freeze()", ClassName.get("com.mx.path.gateway.configuration", "AccessorProxyMap"));
68+
accessorProxyMappings.addStatement("$T.freeze()", ClassHelper.buildClassName(AccessorProxyMap.class));
6569

6670
return accessorProxyMappings.build();
6771
}
@@ -75,7 +79,7 @@ private void recursiveGenerate(Class<? extends Accessor> klass) throws IOExcepti
7579
TypeSpec.Builder classBuilder = TypeSpec.classBuilder(proxyName)
7680
.addModifiers(Modifier.PUBLIC, Modifier.ABSTRACT)
7781
.superclass(klass)
78-
.addSuperinterface(ClassName.get("com.mx.path.gateway.configuration", "AccessorProxy"))
82+
.addSuperinterface(ClassHelper.buildClassName(AccessorProxy.class))
7983

8084
.addJavadoc(
8185
"Base class for wrapping " + klass.getName() + ".\n"
@@ -88,11 +92,11 @@ private void recursiveGenerate(Class<? extends Accessor> klass) throws IOExcepti
8892
.addParameter(AccessorConfiguration.class, "configuration")
8993
.addParameter(ParameterizedTypeName.get(ClassName.get(Class.class), WildcardTypeName.subtypeOf(klass)), "accessorClass")
9094
.addStatement("this.setConfiguration(configuration)")
91-
.addStatement("this.accessorConstructionContext = new $T(accessorClass, configuration)", ParameterizedTypeName.get(ClassName.get("com.mx.path.gateway.configuration", "AccessorConstructionContext"), TypeName.get(klass)))
95+
.addStatement("this.accessorConstructionContext = new $T(accessorClass, configuration)", ParameterizedTypeName.get(ClassHelper.buildClassName(AccessorConstructionContext.class), TypeName.get(klass)))
9296
.build())
9397

9498
.addField(
95-
FieldSpec.builder(ParameterizedTypeName.get(ClassName.get("com.mx.path.gateway.configuration", "AccessorConstructionContext"), WildcardTypeName.subtypeOf(klass)), "accessorConstructionContext")
99+
FieldSpec.builder(ParameterizedTypeName.get(ClassHelper.buildClassName(AccessorConstructionContext.class), WildcardTypeName.subtypeOf(klass)), "accessorConstructionContext")
96100
.addModifiers(Modifier.PRIVATE, Modifier.FINAL)
97101
.addAnnotation(ClassName.get("lombok", "Getter"))
98102
.build())
@@ -233,7 +237,7 @@ private void generateSingletonProxy(String proxyBaseClass, Class<? extends Acces
233237
.build();
234238
javaFile.writeTo(filer);
235239

236-
accessorProxyMappings.addStatement("$T.add(\"singleton\", $T.class, $T.class)", ClassName.get("com.mx.path.gateway.configuration", "AccessorProxyMap"), accessorClass, ClassName.get(packageName, proxyBaseClass + "Singleton"));
240+
accessorProxyMappings.addStatement("$T.add(\"singleton\", $T.class, $T.class)", ClassHelper.buildClassName(AccessorProxyMap.class), accessorClass, ClassName.get(packageName, proxyBaseClass + "Singleton"));
237241
}
238242

239243
private void generatePrototypeProxy(String proxyBaseClass, Class<? extends Accessor> accessorClass) throws IOException {
@@ -270,7 +274,7 @@ private void generatePrototypeProxy(String proxyBaseClass, Class<? extends Acces
270274
.build();
271275
javaFile.writeTo(filer);
272276

273-
accessorProxyMappings.addStatement("$T.add(\"prototype\", $T.class, $T.class)", ClassName.get("com.mx.path.gateway.configuration", "AccessorProxyMap"), accessorClass, ClassName.get(packageName, proxyBaseClass + "Prototype"));
277+
accessorProxyMappings.addStatement("$T.add(\"prototype\", $T.class, $T.class)", ClassHelper.buildClassName(AccessorProxyMap.class), accessorClass, ClassName.get(packageName, proxyBaseClass + "Prototype"));
274278
}
275279

276280
private String calculatePackageName(Class<? extends Accessor> accessorClass) {

gateway/gradle.lockfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ com.google.guava:guava:31.1-jre=compileClasspath,runtimeClasspath,testCompileCla
2424
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2525
com.google.j2objc:j2objc-annotations:1.3=checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2626
com.puppycrawl.tools:checkstyle:8.29=checkstyle
27+
com.squareup:javapoet:1.13.0=runtimeClasspath,testRuntimeClasspath
2728
com.sun.activation:jakarta.activation:1.2.2=runtimeClasspath,testRuntimeClasspath
2829
com.sun.istack:istack-commons-runtime:3.0.12=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2930
com.sun.xml.bind:jaxb-impl:2.3.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
@@ -56,10 +57,10 @@ org.antlr:antlr4-runtime:4.7.2=pmd
5657
org.antlr:antlr4-runtime:4.8-1=checkstyle
5758
org.apache.bcel:bcel:6.5.0=spotbugs
5859
org.apache.commons:commons-lang3:3.12.0=spotbugs
59-
org.apache.commons:commons-lang3:3.14.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
60+
org.apache.commons:commons-lang3:3.17.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
6061
org.apache.commons:commons-lang3:3.8.1=pmd
6162
org.apache.commons:commons-text:1.10.0=spotbugs
62-
org.apache.commons:commons-text:1.12.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
63+
org.apache.commons:commons-text:1.13.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
6364
org.apache.groovy:groovy-bom:4.0.6=testCompileClasspath,testRuntimeClasspath
6465
org.apache.groovy:groovy:4.0.6=testCompileClasspath,testRuntimeClasspath
6566
org.apache.httpcomponents.client5:httpclient5:5.1.3=spotbugs

http/gradle.lockfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ com.google.guava:guava:31.1-jre=compileClasspath,runtimeClasspath,testCompileCla
2424
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2525
com.google.j2objc:j2objc-annotations:1.3=checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2626
com.puppycrawl.tools:checkstyle:8.29=checkstyle
27+
com.squareup:javapoet:1.13.0=runtimeClasspath,testRuntimeClasspath
2728
com.sun.activation:jakarta.activation:1.2.2=runtimeClasspath,testRuntimeClasspath
2829
com.sun.istack:istack-commons-runtime:3.0.12=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2930
com.sun.xml.bind:jaxb-impl:2.3.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
@@ -56,10 +57,10 @@ org.antlr:antlr4-runtime:4.7.2=pmd
5657
org.antlr:antlr4-runtime:4.8-1=checkstyle
5758
org.apache.bcel:bcel:6.5.0=spotbugs
5859
org.apache.commons:commons-lang3:3.12.0=spotbugs
59-
org.apache.commons:commons-lang3:3.14.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
60+
org.apache.commons:commons-lang3:3.17.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
6061
org.apache.commons:commons-lang3:3.8.1=pmd
6162
org.apache.commons:commons-text:1.10.0=spotbugs
62-
org.apache.commons:commons-text:1.12.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
63+
org.apache.commons:commons-text:1.13.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
6364
org.apache.groovy:groovy-bom:4.0.6=testCompileClasspath,testRuntimeClasspath
6465
org.apache.groovy:groovy:4.0.6=testCompileClasspath,testRuntimeClasspath
6566
org.apache.httpcomponents.client5:httpclient5:5.1.3=spotbugs

messaging/gradle.lockfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ com.google.guava:guava:31.1-jre=compileClasspath,runtimeClasspath,testCompileCla
2323
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2424
com.google.j2objc:j2objc-annotations:1.3=checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2525
com.puppycrawl.tools:checkstyle:8.29=checkstyle
26+
com.squareup:javapoet:1.13.0=runtimeClasspath,testRuntimeClasspath
2627
commons-beanutils:commons-beanutils:1.9.4=checkstyle
2728
commons-codec:commons-codec:1.15=spotbugs
2829
commons-collections:commons-collections:3.2.2=checkstyle
@@ -47,10 +48,10 @@ org.antlr:antlr4-runtime:4.7.2=pmd
4748
org.antlr:antlr4-runtime:4.8-1=checkstyle
4849
org.apache.bcel:bcel:6.5.0=spotbugs
4950
org.apache.commons:commons-lang3:3.12.0=spotbugs
50-
org.apache.commons:commons-lang3:3.14.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
51+
org.apache.commons:commons-lang3:3.17.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
5152
org.apache.commons:commons-lang3:3.8.1=pmd
5253
org.apache.commons:commons-text:1.10.0=spotbugs
53-
org.apache.commons:commons-text:1.12.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
54+
org.apache.commons:commons-text:1.13.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
5455
org.apache.groovy:groovy-bom:4.0.6=testCompileClasspath,testRuntimeClasspath
5556
org.apache.groovy:groovy:4.0.6=testCompileClasspath,testRuntimeClasspath
5657
org.apache.httpcomponents.client5:httpclient5:5.1.3=spotbugs

test-gateway-generator/gradle.lockfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ net.jcip:jcip-annotations:1.0=spotbugs
4545
net.sf.saxon:Saxon-HE:11.4=spotbugs
4646
org.apache.bcel:bcel:6.5.0=spotbugs
4747
org.apache.commons:commons-lang3:3.12.0=spotbugs
48-
org.apache.commons:commons-lang3:3.14.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
48+
org.apache.commons:commons-lang3:3.17.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4949
org.apache.commons:commons-text:1.10.0=spotbugs
50-
org.apache.commons:commons-text:1.12.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
50+
org.apache.commons:commons-text:1.13.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
5151
org.apache.groovy:groovy-bom:4.0.6=testCompileClasspath,testRuntimeClasspath
5252
org.apache.groovy:groovy:4.0.6=testCompileClasspath,testRuntimeClasspath
5353
org.apache.httpcomponents.client5:httpclient5:5.1.3=spotbugs

test-gateways/gradle.lockfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ com.google.guava:guava:31.1-jre=compileClasspath,runtimeClasspath,testCompileCla
2929
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=annotationProcessor,checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
3030
com.google.j2objc:j2objc-annotations:1.3=annotationProcessor,checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
3131
com.puppycrawl.tools:checkstyle:8.29=checkstyle
32-
com.squareup:javapoet:1.13.0=annotationProcessor
32+
com.squareup:javapoet:1.13.0=annotationProcessor,runtimeClasspath,testRuntimeClasspath
3333
com.sun.activation:jakarta.activation:1.2.2=annotationProcessor,runtimeClasspath,testRuntimeClasspath
3434
com.sun.istack:istack-commons-runtime:3.0.12=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
3535
com.sun.xml.bind:jaxb-impl:2.3.1=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
@@ -61,10 +61,10 @@ org.antlr:antlr4-runtime:4.7.2=pmd
6161
org.antlr:antlr4-runtime:4.8-1=checkstyle
6262
org.apache.bcel:bcel:6.5.0=spotbugs
6363
org.apache.commons:commons-lang3:3.12.0=spotbugs
64-
org.apache.commons:commons-lang3:3.14.0=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
64+
org.apache.commons:commons-lang3:3.17.0=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
6565
org.apache.commons:commons-lang3:3.8.1=pmd
6666
org.apache.commons:commons-text:1.10.0=spotbugs
67-
org.apache.commons:commons-text:1.12.0=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
67+
org.apache.commons:commons-text:1.13.0=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
6868
org.apache.groovy:groovy-bom:4.0.6=testCompileClasspath,testRuntimeClasspath
6969
org.apache.groovy:groovy:4.0.6=testCompileClasspath,testRuntimeClasspath
7070
org.apache.httpcomponents.client5:httpclient5:5.1.3=spotbugs

test-models/gradle.lockfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ com.google.guava:guava:31.1-jre=compileClasspath,runtimeClasspath,testCompileCla
2424
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2525
com.google.j2objc:j2objc-annotations:1.3=checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2626
com.puppycrawl.tools:checkstyle:8.29=checkstyle
27+
com.squareup:javapoet:1.13.0=runtimeClasspath,testRuntimeClasspath
2728
com.sun.activation:jakarta.activation:1.2.2=runtimeClasspath,testRuntimeClasspath
2829
com.sun.istack:istack-commons-runtime:3.0.12=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2930
com.sun.xml.bind:jaxb-impl:2.3.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
@@ -55,10 +56,10 @@ org.antlr:antlr4-runtime:4.7.2=pmd
5556
org.antlr:antlr4-runtime:4.8-1=checkstyle
5657
org.apache.bcel:bcel:6.5.0=spotbugs
5758
org.apache.commons:commons-lang3:3.12.0=spotbugs
58-
org.apache.commons:commons-lang3:3.14.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
59+
org.apache.commons:commons-lang3:3.17.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
5960
org.apache.commons:commons-lang3:3.8.1=pmd
6061
org.apache.commons:commons-text:1.10.0=spotbugs
61-
org.apache.commons:commons-text:1.12.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
62+
org.apache.commons:commons-text:1.13.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
6263
org.apache.groovy:groovy-bom:4.0.6=testCompileClasspath,testRuntimeClasspath
6364
org.apache.groovy:groovy:4.0.6=testCompileClasspath,testRuntimeClasspath
6465
org.apache.httpcomponents.client5:httpclient5:5.1.3=spotbugs

0 commit comments

Comments
 (0)