langchain4j / langchain4j

Java version of LangChain
https://docs.langchain4j.dev
Apache License 2.0
4k stars 770 forks source link

[BUG] Dependency Issue with langchain4j-vertex-ai-gemini and langchain4j-vertex-ai #899

Closed emilwennstrom closed 1 month ago

emilwennstrom commented 3 months ago

Describe the bug

Can't call the Gemini API when both dependencies are present in pom.xml

Log and Stack trace

Handler dispatch failed: java.lang.IncompatibleClassChangeError: class com.google.cloud.vertexai.api.stub.PredictionServiceStubSettings overrides final method com.google.api.gax.rpc.StubSettings.getEndpoint()Ljava/lang/String;] with root cause

java.lang.IncompatibleClassChangeError: class com.google.cloud.vertexai.api.stub.PredictionServiceStubSettings overrides final method com.google.api.gax.rpc.StubSettings.getEndpoint()Ljava/lang/String; at java.base/java.lang.ClassLoader.defineClass1(Native Method) ~[na:na] at java.base/java.lang.ClassLoader.defineClass(ClassLoader.java:1012) ~[na:na] at java.base/java.security.SecureClassLoader.defineClass(SecureClassLoader.java:150) ~[na:na] at java.base/jdk.internal.loader.BuiltinClassLoader.defineClass(BuiltinClassLoader.java:862) ~[na:na] at java.base/jdk.internal.loader.BuiltinClassLoader.findClassOnClassPathOrNull(BuiltinClassLoader.java:760) ~[na:na] at java.base/jdk.internal.loader.BuiltinClassLoader.loadClassOrNull(BuiltinClassLoader.java:681) ~[na:na] at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:639) ~[na:na] at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) ~[na:na] at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[na:na] at com.google.cloud.vertexai.api.PredictionServiceSettings$Builder.createDefault(PredictionServiceSettings.java:280) ~[google-cloud-vertexai-0.6.0.jar:0.6.0] at com.google.cloud.vertexai.api.PredictionServiceSettings$Builder.access$000(PredictionServiceSettings.java:261) ~[google-cloud-vertexai-0.6.0.jar:0.6.0] at com.google.cloud.vertexai.api.PredictionServiceSettings.newBuilder(PredictionServiceSettings.java:237) ~[google-cloud-vertexai-0.6.0.jar:0.6.0] at com.google.cloud.vertexai.VertexAI.getPredictionServiceClient(VertexAI.java:271) ~[google-cloud-vertexai-0.6.0.jar:0.6.0] at com.google.cloud.vertexai.generativeai.GenerativeModel.generateContent(GenerativeModel.java:629) ~[google-cloud-vertexai-0.6.0.jar:0.6.0] at com.google.cloud.vertexai.generativeai.GenerativeModel.generateContent(GenerativeModel.java:610) ~[google-cloud-vertexai-0.6.0.jar:0.6.0] at com.google.cloud.vertexai.generativeai.GenerativeModel.generateContent(GenerativeModel.java:499) ~[google-cloud-vertexai-0.6.0.jar:0.6.0] at dev.langchain4j.model.vertexai.VertexAiGeminiChatModel.lambda$generate$0(VertexAiGeminiChatModel.java:109) ~[langchain4j-vertex-ai-gemini-0.29.1.jar:na] at dev.langchain4j.internal.RetryUtils$RetryPolicy.withRetry(RetryUtils.java:192) ~[langchain4j-core-0.29.1.jar:na] at dev.langchain4j.internal.RetryUtils.withRetry(RetryUtils.java:229) ~[langchain4j-core-0.29.1.jar:na] at dev.langchain4j.model.vertexai.VertexAiGeminiChatModel.generate(VertexAiGeminiChatModel.java:108) ~[langchain4j-vertex-ai-gemini-0.29.1.jar:na] at dev.langchain4j.model.chat.ChatLanguageModel.generate(ChatLanguageModel.java:39) ~[langchain4j-core-0.29.1.jar:na] at dev.langchain4j.model.chat.ChatLanguageModel.generate(ChatLanguageModel.java:27) ~[langchain4j-core-0.29.1.jar:na] at org.example.demo2.controllers.DynamicModelController.test3(DynamicModelController.java:70) ~[classes/:na] at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na] at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[na:na] at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na] at java.base/java.lang.reflect.Method.invoke(Method.java:568) ~[na:na] at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) ~[spring-web-6.1.5.jar:6.1.5] at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) ~[spring-web-6.1.5.jar:6.1.5] at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) ~[spring-webmvc-6.1.5.jar:6.1.5] at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:925) ~[spring-webmvc-6.1.5.jar:6.1.5] at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:830) ~[spring-webmvc-6.1.5.jar:6.1.5] at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-6.1.5.jar:6.1.5] at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) ~[spring-webmvc-6.1.5.jar:6.1.5] at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) ~[spring-webmvc-6.1.5.jar:6.1.5] at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) ~[spring-webmvc-6.1.5.jar:6.1.5] at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) ~[spring-webmvc-6.1.5.jar:6.1.5] at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) ~[tomcat-embed-core-10.1.19.jar:6.0] at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) ~[spring-webmvc-6.1.5.jar:6.1.5] at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) ~[tomcat-embed-core-10.1.19.jar:6.0] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:205) ~[tomcat-embed-core-10.1.19.jar:10.1.19] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:149) ~[tomcat-embed-core-10.1.19.jar:10.1.19] at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) ~[tomcat-embed-websocket-10.1.19.jar:10.1.19] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:174) ~[tomcat-embed-core-10.1.19.jar:10.1.19] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:149) ~[tomcat-embed-core-10.1.19.jar:10.1.19] at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-6.1.5.jar:6.1.5] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) ~[spring-web-6.1.5.jar:6.1.5] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:174) ~[tomcat-embed-core-10.1.19.jar:10.1.19] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:149) ~[tomcat-embed-core-10.1.19.jar:10.1.19] at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-6.1.5.jar:6.1.5] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) ~[spring-web-6.1.5.jar:6.1.5] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:174) ~[tomcat-embed-core-10.1.19.jar:10.1.19] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:149) ~[tomcat-embed-core-10.1.19.jar:10.1.19] at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-6.1.5.jar:6.1.5] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) ~[spring-web-6.1.5.jar:6.1.5] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:174) ~[tomcat-embed-core-10.1.19.jar:10.1.19] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:149) ~[tomcat-embed-core-10.1.19.jar:10.1.19] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) ~[tomcat-embed-core-10.1.19.jar:10.1.19] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) ~[tomcat-embed-core-10.1.19.jar:10.1.19] at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) ~[tomcat-embed-core-10.1.19.jar:10.1.19] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) ~[tomcat-embed-core-10.1.19.jar:10.1.19] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) ~[tomcat-embed-core-10.1.19.jar:10.1.19] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) ~[tomcat-embed-core-10.1.19.jar:10.1.19] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) ~[tomcat-embed-core-10.1.19.jar:10.1.19] at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:391) ~[tomcat-embed-core-10.1.19.jar:10.1.19] at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) ~[tomcat-embed-core-10.1.19.jar:10.1.19] at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) ~[tomcat-embed-core-10.1.19.jar:10.1.19] at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1744) ~[tomcat-embed-core-10.1.19.jar:10.1.19] at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) ~[tomcat-embed-core-10.1.19.jar:10.1.19] at org.apache.tomcat.u til.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-10.1.19.jar:10.1.19] at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-10.1.19.jar:10.1.19] at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) ~[tomcat-embed-core-10.1.19.jar:10.1.19] at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na] ChatGPT To Reproduce

Just add both dependencies to the pom.xml and try to call the gemini api

<dependency>
        <groupId>dev.langchain4j</groupId>
        <artifactId>langchain4j-vertex-ai-gemini</artifactId>
        <version>0.29.1</version>
    </dependency>

    <dependency>
        <groupId>dev.langchain4j</groupId>
        <artifactId>langchain4j-vertex-ai</artifactId>
        <version>0.29.1</version>
    </dependency>

Expected behavior

Expected response from Gemini, got error. Please complete the following information:

Additional context Workaround:

 <dependency>
        <groupId>dev.langchain4j</groupId>
        <artifactId>langchain4j-vertex-ai-gemini</artifactId>
        <version>0.29.1</version>
        <exclusions>
            <exclusion>
                <groupId>dev.langchain4j</groupId>
                <artifactId>langchain4j-vertex-ai</artifactId>
            </exclusion>
        </exclusions>
    </dependency>

    <dependency>
        <groupId>dev.langchain4j</groupId>
        <artifactId>langchain4j-vertex-ai</artifactId>
        <version>0.29.1</version>
    </dependency>
langchain4j commented 3 months ago

cc @glaforge

lpalm commented 1 month ago

Is this the same bug as #1010? I have the same exception: Exception in thread "main" java.lang.NoSuchMethodError: 'void com.google.cloud.vertexai.generativeai.GenerativeModel.<init>(java.lang.String, com.google.cloud.vertexai.api.GenerationConfig, com.google.cloud.vertexai.VertexAI)' But the workaround in this issue does not work for me (I tried 0.29.1 and 0.30.0)

glaforge commented 1 month ago

Could you please double check this with the latest 0.31 version of LangChain4j that just got released? Both modules have been updated to the latest libraries.

lpalm commented 1 month ago

I can confirm that the #1010 is fixed in my machine

langchain4j commented 1 month ago

Fixed in 0.31.0

boczkas commented 1 month ago

I'm facing really similar (the same?) issue with version 0.31.0.

Here are my dependencies:

 <dependencies>
    <dependency>
      <groupId>dev.langchain4j</groupId>
      <artifactId>langchain4j-vertex-ai-gemini</artifactId>
      <version>0.31.0</version>
    </dependency>

    <dependency>
      <groupId>dev.langchain4j</groupId>
      <artifactId>langchain4j-vertex-ai</artifactId>
      <version>0.31.0</version>
    </dependency>

    <dependency>
      <groupId>dev.langchain4j</groupId>
      <artifactId>langchain4j</artifactId>
      <version>0.31.0</version>
    </dependency>
  </dependencies>

Exception:

Exception in thread "main" java.lang.NoSuchMethodError: 'void com.google.cloud.vertexai.VertexAI.<init>(java.lang.String, java.lang.String)'
    at dev.langchain4j.model.vertexai.VertexAiGeminiChatModel.<init>(VertexAiGeminiChatModel.java:80)
    at dev.langchain4j.model.vertexai.VertexAiGeminiChatModel$VertexAiGeminiChatModelBuilder.build(VertexAiGeminiChatModel.java:54)
    at car_recomender.LangChain4j.main(LangChain4j.java:12)

And the code:

        ChatLanguageModel model = VertexAiGeminiChatModel.builder()
                .modelName(ApiKeys.MODEL_NAME)
                .location(ApiKeys.LOCATION)
                .project(ApiKeys.PROJECT_ID)
                .build();

Unfortunately I can't workaround it anyhow.

langchain4j commented 1 month ago

Hi @boczkas thanks for reporting!

cc @glaforge

glaforge commented 1 month ago

I tried on my machine, with 0.31, but couldn't reproduce the issue, I could load, for example, an embedding model from the vertex-ai module, and then the Gemini model from the vertex-ai-gemini module, and didn't see this problem at all.

I also tried with a snapshot of the upcoming 0.32 release, but again, couldn't reproduce the problem.

Could you please maybe bundle a reproducer project in a zip file and share it with us?

langchain4j commented 1 month ago

@boczkas please provide the output of mvn dependency:tree -Dverbose

boczkas commented 1 month ago

Here you can find result of command mvn dependency:tree -Dverbose:

[INFO] ------------------< org.example:langChain4jDebugging >------------------
[INFO] Building Archetype - langChain4jDebugging 1.0-SNAPSHOT
[INFO]   from pom.xml
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] 
[INFO] --- dependency:3.6.1:tree (default-cli) @ langChain4jDebugging ---
[INFO] org.example:langChain4jDebugging:jar:1.0-SNAPSHOT
[INFO] +- com.google.cloud:google-cloud-vertexai:jar:0.1.0:compile
[INFO] |  +- io.grpc:grpc-api:jar:1.59.1:compile (version managed from 1.59.1)
[INFO] |  +- com.google.code.findbugs:jsr305:jar:3.0.2:compile
[INFO] |  +- com.google.errorprone:error_prone_annotations:jar:2.23.0:compile
[INFO] |  +- io.grpc:grpc-stub:jar:1.59.1:compile (version managed from 1.59.1)
[INFO] |  +- io.grpc:grpc-protobuf:jar:1.59.1:compile (version managed from 1.59.1)
[INFO] |  +- io.grpc:grpc-protobuf-lite:jar:1.59.1:compile (version managed from 1.59.1)
[INFO] |  +- com.google.api:api-common:jar:2.21.0:compile (version managed from 2.21.0)
[INFO] |  +- com.google.auto.value:auto-value-annotations:jar:1.10.4:compile (version managed from 1.10.4)
[INFO] |  +- javax.annotation:javax.annotation-api:jar:1.3.2:compile
[INFO] |  +- com.google.protobuf:protobuf-java:jar:3.25.1:compile (version managed from 3.25.1)
[INFO] |  +- com.google.api.grpc:proto-google-common-protos:jar:2.29.0:compile (version managed from 2.29.0)
[INFO] |  +- com.google.api.grpc:proto-google-cloud-vertexai-v1beta1:jar:0.1.0:compile (version managed from 0.1.0)
[INFO] |  |  +- (com.google.auto.value:auto-value-annotations:jar:1.10.4:compile - version managed from 1.10.4; omitted for duplicate)
[INFO] |  |  +- (com.google.code.findbugs:jsr305:jar:3.0.2:compile - omitted for duplicate)
[INFO] |  |  +- (javax.annotation:javax.annotation-api:jar:1.3.2:compile - omitted for duplicate)
[INFO] |  |  +- (com.google.errorprone:error_prone_annotations:jar:2.23.0:compile - omitted for duplicate)
[INFO] |  |  +- (com.google.guava:failureaccess:jar:1.0.1:compile - omitted for duplicate)
[INFO] |  |  +- (com.google.guava:listenablefuture:jar:9999.0-empty-to-avoid-conflict-with-guava:compile - omitted for duplicate)
[INFO] |  |  +- (org.checkerframework:checker-qual:jar:3.40.0:compile - omitted for duplicate)
[INFO] |  |  \- (com.google.j2objc:j2objc-annotations:jar:2.8:compile - omitted for duplicate)
[INFO] |  +- com.google.guava:guava:jar:32.1.3-jre:compile (version managed from 32.1.3-jre)
[INFO] |  +- com.google.guava:failureaccess:jar:1.0.1:compile
[INFO] |  +- com.google.guava:listenablefuture:jar:9999.0-empty-to-avoid-conflict-with-guava:compile
[INFO] |  +- org.checkerframework:checker-qual:jar:3.40.0:compile
[INFO] |  +- com.google.j2objc:j2objc-annotations:jar:2.8:compile
[INFO] |  +- com.google.api:gax:jar:2.38.0:compile (version managed from 2.38.0)
[INFO] |  +- com.google.auth:google-auth-library-credentials:jar:1.20.0:compile (version managed from 1.20.0)
[INFO] |  +- io.opencensus:opencensus-api:jar:0.31.1:compile
[INFO] |  +- io.grpc:grpc-context:jar:1.59.1:compile (version managed from 1.59.1)
[INFO] |  +- com.google.auth:google-auth-library-oauth2-http:jar:1.20.0:compile (version managed from 1.20.0)
[INFO] |  +- com.google.api:gax-grpc:jar:2.38.0:compile (version managed from 2.38.0)
[INFO] |  +- io.grpc:grpc-inprocess:jar:1.59.1:compile (version managed from 1.59.1)
[INFO] |  +- io.grpc:grpc-core:jar:1.59.1:compile (version managed from 1.59.1)
[INFO] |  +- com.google.android:annotations:jar:4.1.1.4:runtime
[INFO] |  +- org.codehaus.mojo:animal-sniffer-annotations:jar:1.23:runtime
[INFO] |  +- io.grpc:grpc-util:jar:1.59.1:runtime (version managed from 1.59.1)
[INFO] |  +- io.grpc:grpc-alts:jar:1.59.1:compile (version managed from 1.59.1)
[INFO] |  +- io.grpc:grpc-grpclb:jar:1.59.1:compile (version managed from 1.59.1)
[INFO] |  +- org.conscrypt:conscrypt-openjdk-uber:jar:2.5.2:compile
[INFO] |  +- io.grpc:grpc-auth:jar:1.59.1:compile (version managed from 1.59.1)
[INFO] |  +- io.grpc:grpc-netty-shaded:jar:1.59.1:compile (version managed from 1.59.1)
[INFO] |  +- io.perfmark:perfmark-api:jar:0.26.0:runtime
[INFO] |  +- io.grpc:grpc-googleapis:jar:1.59.1:runtime (version managed from 1.59.1)
[INFO] |  +- io.grpc:grpc-xds:jar:1.59.1:runtime (version managed from 1.59.1)
[INFO] |  +- io.opencensus:opencensus-proto:jar:0.2.0:runtime
[INFO] |  +- io.grpc:grpc-services:jar:1.59.1:runtime (version managed from 1.59.1)
[INFO] |  +- com.google.re2j:re2j:jar:1.7:runtime
[INFO] |  +- com.google.api:gax-httpjson:jar:2.38.0:compile (version managed from 2.38.0)
[INFO] |  +- com.google.code.gson:gson:jar:2.10.1:compile (version managed from 2.10.1)
[INFO] |  +- com.google.http-client:google-http-client:jar:1.43.3:compile (version managed from 1.43.3)
[INFO] |  +- org.apache.httpcomponents:httpclient:jar:4.5.14:compile
[INFO] |  +- commons-logging:commons-logging:jar:1.2:compile
[INFO] |  +- commons-codec:commons-codec:jar:1.16.0:compile
[INFO] |  +- org.apache.httpcomponents:httpcore:jar:4.4.16:compile
[INFO] |  +- io.opencensus:opencensus-contrib-http-util:jar:0.31.1:compile
[INFO] |  +- com.google.http-client:google-http-client-gson:jar:1.43.3:compile (version managed from 1.43.3)
[INFO] |  +- com.google.protobuf:protobuf-java-util:jar:3.25.1:compile (version managed from 3.25.1)
[INFO] |  +- com.google.api.grpc:grpc-google-common-protos:jar:2.29.0:compile (version managed from 2.29.0)
[INFO] |  +- com.google.api.grpc:proto-google-iam-v1:jar:1.24.0:compile (version managed from 1.24.0)
[INFO] |  +- com.google.api.grpc:grpc-google-iam-v1:jar:1.24.0:compile (version managed from 1.24.0)
[INFO] |  \- org.threeten:threetenbp:jar:1.6.8:compile
[INFO] +- dev.langchain4j:langchain4j-open-ai:jar:0.31.0:compile
[INFO] |  +- dev.langchain4j:langchain4j-core:jar:0.31.0:compile
[INFO] |  |  +- (com.google.code.gson:gson:jar:2.10.1:compile - version managed from 2.10.1; omitted for duplicate)
[INFO] |  |  \- (org.slf4j:slf4j-api:jar:2.0.7:compile - omitted for conflict with 2.1.0-alpha1)
[INFO] |  +- dev.ai4j:openai4j:jar:0.17.0:compile
[INFO] |  |  +- com.squareup.retrofit2:retrofit:jar:2.9.0:compile
[INFO] |  |  |  \- (com.squareup.okhttp3:okhttp:jar:3.14.9:compile - omitted for conflict with 5.0.0-alpha.3)
[INFO] |  |  +- com.squareup.retrofit2:converter-gson:jar:2.9.0:compile
[INFO] |  |  |  \- (com.squareup.retrofit2:retrofit:jar:2.9.0:compile - omitted for duplicate)
[INFO] |  |  +- (com.google.code.gson:gson:jar:2.10.1:compile - version managed from 2.8.9; omitted for duplicate)
[INFO] |  |  +- (com.squareup.okhttp3:okhttp:jar:4.12.0:compile - omitted for conflict with 5.0.0-alpha.3)
[INFO] |  |  +- com.squareup.okhttp3:okhttp-sse:jar:4.12.0:compile
[INFO] |  |  |  +- (com.squareup.okhttp3:okhttp:jar:4.12.0:compile - omitted for conflict with 5.0.0-alpha.3)
[INFO] |  |  |  \- (org.jetbrains.kotlin:kotlin-stdlib-jdk8:jar:1.8.21:compile - omitted for conflict with 1.5.31)
[INFO] |  |  \- (org.slf4j:slf4j-api:jar:2.0.7:compile - omitted for conflict with 2.1.0-alpha1)
[INFO] |  \- com.knuddels:jtokkit:jar:1.0.0:compile
[INFO] +- dev.langchain4j:langchain4j:jar:0.31.0:compile
[INFO] |  +- (dev.langchain4j:langchain4j-core:jar:0.31.0:compile - omitted for duplicate)
[INFO] |  +- org.apache.opennlp:opennlp-tools:jar:1.9.4:compile
[INFO] |  +- org.jsoup:jsoup:jar:1.16.1:compile
[INFO] |  \- (org.slf4j:slf4j-api:jar:2.0.7:compile - omitted for conflict with 2.1.0-alpha1)
[INFO] +- ch.qos.logback:logback-classic:jar:1.4.12:compile
[INFO] |  +- ch.qos.logback:logback-core:jar:1.4.12:compile
[INFO] |  \- (org.slf4j:slf4j-api:jar:2.0.7:compile - omitted for conflict with 2.1.0-alpha1)
[INFO] +- org.slf4j:slf4j-api:jar:2.1.0-alpha1:compile
[INFO] +- dev.langchain4j:langchain4j-vertex-ai-gemini:jar:0.31.0:compile
[INFO] |  +- (dev.langchain4j:langchain4j-core:jar:0.31.0:compile - omitted for duplicate)
[INFO] |  \- (com.google.cloud:google-cloud-vertexai:jar:0.1.0:compile - version managed from 1.3.0; omitted for duplicate)
[INFO] +- com.squareup.okhttp3:okhttp:jar:5.0.0-alpha.3:compile (scope not updated to compile)
[INFO] |  +- com.squareup.okio:okio-jvm:jar:3.0.0:compile
[INFO] |  |  +- org.jetbrains.kotlin:kotlin-stdlib-jdk8:jar:1.5.31:compile
[INFO] |  |  |  +- (org.jetbrains.kotlin:kotlin-stdlib:jar:1.5.31:compile - omitted for duplicate)
[INFO] |  |  |  \- org.jetbrains.kotlin:kotlin-stdlib-jdk7:jar:1.5.31:compile
[INFO] |  |  |     \- (org.jetbrains.kotlin:kotlin-stdlib:jar:1.5.31:compile - omitted for duplicate)
[INFO] |  |  \- org.jetbrains.kotlin:kotlin-stdlib-common:jar:1.5.31:compile
[INFO] |  \- org.jetbrains.kotlin:kotlin-stdlib:jar:1.5.31:compile
[INFO] |     +- org.jetbrains:annotations:jar:13.0:compile
[INFO] |     \- (org.jetbrains.kotlin:kotlin-stdlib-common:jar:1.5.31:compile - omitted for duplicate)
[INFO] \- org.projectlombok:lombok:jar:1.18.32:provided

Zipped project attached. langChain4jDebugging.zip

Screenshot from Intellij: image

glaforge commented 1 month ago

I see com.google.cloud:google-cloud-vertexai:jar:0.1.0:compile. Shouldn't that be 0.31.0 instead of 0.1.0? (ie. a missing 3)

boczkas commented 1 month ago

I think that this one comes from: https://mvnrepository.com/artifact/com.google.cloud/google-cloud-vertexai So 0.1.0 version is old, but existing, while 0.31.0 is not there.

I guess it is not needed at all in my case. I've copied the pom from the bigger project, when it was need. With this one removed, here is the output of mvn dependency:tree -Dverbose:

[INFO] ------------------< org.example:langChain4jDebugging >------------------
[INFO] Building Archetype - langChain4jDebugging 1.0-SNAPSHOT
[INFO]   from pom.xml
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] 
[INFO] --- dependency:3.6.1:tree (default-cli) @ langChain4jDebugging ---
[INFO] org.example:langChain4jDebugging:jar:1.0-SNAPSHOT
[INFO] +- dev.langchain4j:langchain4j-open-ai:jar:0.31.0:compile
[INFO] |  +- dev.langchain4j:langchain4j-core:jar:0.31.0:compile
[INFO] |  |  +- com.google.code.gson:gson:jar:2.10.1:compile (version managed from 2.10.1)
[INFO] |  |  \- (org.slf4j:slf4j-api:jar:2.0.7:compile - omitted for conflict with 2.1.0-alpha1)
[INFO] |  +- dev.ai4j:openai4j:jar:0.17.0:compile
[INFO] |  |  +- com.squareup.retrofit2:retrofit:jar:2.9.0:compile
[INFO] |  |  |  \- (com.squareup.okhttp3:okhttp:jar:3.14.9:compile - omitted for conflict with 4.12.0)
[INFO] |  |  +- com.squareup.retrofit2:converter-gson:jar:2.9.0:compile
[INFO] |  |  |  \- (com.squareup.retrofit2:retrofit:jar:2.9.0:compile - omitted for duplicate)
[INFO] |  |  +- (com.google.code.gson:gson:jar:2.10.1:compile - version managed from 2.8.9; omitted for duplicate)
[INFO] |  |  +- com.squareup.okhttp3:okhttp:jar:4.12.0:compile
[INFO] |  |  |  +- com.squareup.okio:okio:jar:3.6.0:compile
[INFO] |  |  |  |  \- com.squareup.okio:okio-jvm:jar:3.6.0:compile
[INFO] |  |  |  |     +- (org.jetbrains.kotlin:kotlin-stdlib-jdk8:jar:1.9.10:compile - omitted for conflict with 1.8.21)
[INFO] |  |  |  |     \- org.jetbrains.kotlin:kotlin-stdlib-common:jar:1.9.10:compile
[INFO] |  |  |  \- org.jetbrains.kotlin:kotlin-stdlib-jdk8:jar:1.8.21:compile
[INFO] |  |  |     +- org.jetbrains.kotlin:kotlin-stdlib:jar:1.8.21:compile
[INFO] |  |  |     |  +- (org.jetbrains.kotlin:kotlin-stdlib-common:jar:1.8.21:compile - omitted for conflict with 1.9.10)
[INFO] |  |  |     |  \- org.jetbrains:annotations:jar:13.0:compile
[INFO] |  |  |     \- org.jetbrains.kotlin:kotlin-stdlib-jdk7:jar:1.8.21:compile
[INFO] |  |  |        \- (org.jetbrains.kotlin:kotlin-stdlib:jar:1.8.21:compile - omitted for duplicate)
[INFO] |  |  +- com.squareup.okhttp3:okhttp-sse:jar:4.12.0:compile
[INFO] |  |  |  +- (com.squareup.okhttp3:okhttp:jar:4.12.0:compile - omitted for duplicate)
[INFO] |  |  |  \- (org.jetbrains.kotlin:kotlin-stdlib-jdk8:jar:1.8.21:compile - omitted for duplicate)
[INFO] |  |  \- (org.slf4j:slf4j-api:jar:2.0.7:compile - omitted for conflict with 2.1.0-alpha1)
[INFO] |  \- com.knuddels:jtokkit:jar:1.0.0:compile
[INFO] +- dev.langchain4j:langchain4j:jar:0.31.0:compile
[INFO] |  +- (dev.langchain4j:langchain4j-core:jar:0.31.0:compile - omitted for duplicate)
[INFO] |  +- org.apache.opennlp:opennlp-tools:jar:1.9.4:compile
[INFO] |  +- org.jsoup:jsoup:jar:1.16.1:compile
[INFO] |  \- (org.slf4j:slf4j-api:jar:2.0.7:compile - omitted for conflict with 2.1.0-alpha1)
[INFO] +- ch.qos.logback:logback-classic:jar:1.4.12:compile
[INFO] |  +- ch.qos.logback:logback-core:jar:1.4.12:compile
[INFO] |  \- (org.slf4j:slf4j-api:jar:2.0.7:compile - omitted for conflict with 2.1.0-alpha1)
[INFO] +- org.slf4j:slf4j-api:jar:2.1.0-alpha1:compile
[INFO] +- dev.langchain4j:langchain4j-vertex-ai-gemini:jar:0.31.0:compile
[INFO] |  +- (dev.langchain4j:langchain4j-core:jar:0.31.0:compile - omitted for duplicate)
[INFO] |  \- com.google.cloud:google-cloud-vertexai:jar:0.1.0:compile (version managed from 1.3.0)
[INFO] |     +- io.grpc:grpc-api:jar:1.59.1:compile (version managed from 1.59.1)
[INFO] |     +- com.google.code.findbugs:jsr305:jar:3.0.2:compile
[INFO] |     +- com.google.errorprone:error_prone_annotations:jar:2.23.0:compile
[INFO] |     +- io.grpc:grpc-stub:jar:1.59.1:compile (version managed from 1.59.1)
[INFO] |     +- io.grpc:grpc-protobuf:jar:1.59.1:compile (version managed from 1.59.1)
[INFO] |     +- io.grpc:grpc-protobuf-lite:jar:1.59.1:compile (version managed from 1.59.1)
[INFO] |     +- com.google.api:api-common:jar:2.21.0:compile (version managed from 2.21.0)
[INFO] |     +- com.google.auto.value:auto-value-annotations:jar:1.10.4:compile (version managed from 1.10.4)
[INFO] |     +- javax.annotation:javax.annotation-api:jar:1.3.2:compile
[INFO] |     +- com.google.protobuf:protobuf-java:jar:3.25.1:compile (version managed from 3.25.1)
[INFO] |     +- com.google.api.grpc:proto-google-common-protos:jar:2.29.0:compile (version managed from 2.29.0)
[INFO] |     +- com.google.api.grpc:proto-google-cloud-vertexai-v1beta1:jar:0.1.0:compile (version managed from 0.1.0)
[INFO] |     |  +- (com.google.auto.value:auto-value-annotations:jar:1.10.4:compile - version managed from 1.10.4; omitted for duplicate)
[INFO] |     |  +- (com.google.code.findbugs:jsr305:jar:3.0.2:compile - omitted for duplicate)
[INFO] |     |  +- (javax.annotation:javax.annotation-api:jar:1.3.2:compile - omitted for duplicate)
[INFO] |     |  +- (com.google.errorprone:error_prone_annotations:jar:2.23.0:compile - omitted for duplicate)
[INFO] |     |  +- (com.google.guava:failureaccess:jar:1.0.1:compile - omitted for duplicate)
[INFO] |     |  +- (com.google.guava:listenablefuture:jar:9999.0-empty-to-avoid-conflict-with-guava:compile - omitted for duplicate)
[INFO] |     |  +- (org.checkerframework:checker-qual:jar:3.40.0:compile - omitted for duplicate)
[INFO] |     |  \- (com.google.j2objc:j2objc-annotations:jar:2.8:compile - omitted for duplicate)
[INFO] |     +- com.google.guava:guava:jar:32.1.3-jre:compile (version managed from 32.1.3-jre)
[INFO] |     +- com.google.guava:failureaccess:jar:1.0.1:compile
[INFO] |     +- com.google.guava:listenablefuture:jar:9999.0-empty-to-avoid-conflict-with-guava:compile
[INFO] |     +- org.checkerframework:checker-qual:jar:3.40.0:compile
[INFO] |     +- com.google.j2objc:j2objc-annotations:jar:2.8:compile
[INFO] |     +- com.google.api:gax:jar:2.38.0:compile (version managed from 2.38.0)
[INFO] |     +- com.google.auth:google-auth-library-credentials:jar:1.20.0:compile (version managed from 1.20.0)
[INFO] |     +- io.opencensus:opencensus-api:jar:0.31.1:compile
[INFO] |     +- io.grpc:grpc-context:jar:1.59.1:compile (version managed from 1.59.1)
[INFO] |     +- com.google.auth:google-auth-library-oauth2-http:jar:1.20.0:compile (version managed from 1.20.0)
[INFO] |     +- com.google.api:gax-grpc:jar:2.38.0:compile (version managed from 2.38.0)
[INFO] |     +- io.grpc:grpc-inprocess:jar:1.59.1:compile (version managed from 1.59.1)
[INFO] |     +- io.grpc:grpc-core:jar:1.59.1:compile (version managed from 1.59.1)
[INFO] |     +- com.google.android:annotations:jar:4.1.1.4:runtime
[INFO] |     +- org.codehaus.mojo:animal-sniffer-annotations:jar:1.23:runtime
[INFO] |     +- io.grpc:grpc-util:jar:1.59.1:runtime (version managed from 1.59.1)
[INFO] |     +- io.grpc:grpc-alts:jar:1.59.1:compile (version managed from 1.59.1)
[INFO] |     +- io.grpc:grpc-grpclb:jar:1.59.1:compile (version managed from 1.59.1)
[INFO] |     +- org.conscrypt:conscrypt-openjdk-uber:jar:2.5.2:compile
[INFO] |     +- io.grpc:grpc-auth:jar:1.59.1:compile (version managed from 1.59.1)
[INFO] |     +- io.grpc:grpc-netty-shaded:jar:1.59.1:compile (version managed from 1.59.1)
[INFO] |     +- io.perfmark:perfmark-api:jar:0.26.0:runtime
[INFO] |     +- io.grpc:grpc-googleapis:jar:1.59.1:runtime (version managed from 1.59.1)
[INFO] |     +- io.grpc:grpc-xds:jar:1.59.1:runtime (version managed from 1.59.1)
[INFO] |     +- io.opencensus:opencensus-proto:jar:0.2.0:runtime
[INFO] |     +- io.grpc:grpc-services:jar:1.59.1:runtime (version managed from 1.59.1)
[INFO] |     +- com.google.re2j:re2j:jar:1.7:runtime
[INFO] |     +- com.google.api:gax-httpjson:jar:2.38.0:compile (version managed from 2.38.0)
[INFO] |     +- (com.google.code.gson:gson:jar:2.10.1:compile - version managed from 2.10.1; omitted for duplicate)
[INFO] |     +- com.google.http-client:google-http-client:jar:1.43.3:compile (version managed from 1.43.3)
[INFO] |     +- org.apache.httpcomponents:httpclient:jar:4.5.14:compile
[INFO] |     +- commons-logging:commons-logging:jar:1.2:compile
[INFO] |     +- commons-codec:commons-codec:jar:1.16.0:compile
[INFO] |     +- org.apache.httpcomponents:httpcore:jar:4.4.16:compile
[INFO] |     +- io.opencensus:opencensus-contrib-http-util:jar:0.31.1:compile
[INFO] |     +- com.google.http-client:google-http-client-gson:jar:1.43.3:compile (version managed from 1.43.3)
[INFO] |     +- com.google.protobuf:protobuf-java-util:jar:3.25.1:compile (version managed from 3.25.1)
[INFO] |     +- com.google.api.grpc:grpc-google-common-protos:jar:2.29.0:compile (version managed from 2.29.0)
[INFO] |     +- com.google.api.grpc:proto-google-iam-v1:jar:1.24.0:compile (version managed from 1.24.0)
[INFO] |     +- com.google.api.grpc:grpc-google-iam-v1:jar:1.24.0:compile (version managed from 1.24.0)
[INFO] |     \- org.threeten:threetenbp:jar:1.6.8:compile
[INFO] \- org.projectlombok:lombok:jar:1.18.32:provided
caesarsiza commented 3 weeks ago

Can I get help here, please? Is there anything else I should do to fix the " project cannot be null or blank" error? I'm also using 0.31.0 . I tried other versions, but same issue.

---Code snippet---

String projectId = "myproject-id";
String location = "us-east1";
String modelName = "gemini-1.5-flash-001";

ChatLanguageModel model = VertexAiGeminiChatModel.builder() .project(System.getenv(projectId)) .location(System.getenv(location)) .modelName(modelName) .build();


Error:

java.lang.IllegalArgumentException: project cannot be null or blank at dev.langchain4j.internal.Exceptions.illegalArgument(Exceptions.java:19) at dev.langchain4j.internal.ValidationUtils.ensureNotBlank(ValidationUtils.java:98) at dev.langchain4j.model.vertexai.VertexAiGeminiChatModel.(VertexAiGeminiChatModel.java:79) at dev.langchain4j.model.vertexai.VertexAiGeminiChatModel$VertexAiGeminiChatModelBuilder.build(VertexAiGeminiChatModel.java:54)

Thank you in advance!

glaforge commented 3 weeks ago

When using System.getenv(projectId) with String projectId = "myproject-id", that means that your Java program will look for an environment variable that is called myproject-id.

Instead, I think you want to do:

ChatLanguageModel model = VertexAiGeminiChatModel.builder()
    .project(projectId)
    .location(location)
    .modelName(modelName)
    .build();

That way, you will use the local variables you have in your program. Use System.getenv() only if you want to find the project (or location, etc) in an environment variable, for externalization purpose.

caesarsiza commented 3 weeks ago

@glaforge Thanks for the quick response. That clarification makes sense. In fact, I had already tried doing exactly as you said but I reverted back because without the System.getenv() I run into another trouble (error)-- which is exactly why I joined this thread: "GeminiMultimodalTest.geminiTest3:33 » NoSuchMethod 'com.google.cloud.vertexai.generativeai.GenerativeModel com.google.cloud.vertexai.generativeai.GenerativeModel.withGenerationConfig(com.google.cloud.vertexai.api.GenerationConfig)' [INFO] "

glaforge commented 3 weeks ago

@caesarsiza It sounds strange, and makes me think again of a dependency issues. Could you please show me your pom.xml file? And also print the output of the command: mvn dependency:tree -Dverbose?

caesarsiza commented 3 weeks ago

pom.xml:

com.google.cloud libraries-bom 26.32.0 pom import dev.langchain4j langchain4j-vertex-ai 0.31.0 dev.langchain4j langchain4j-vertex-ai-gemini 0.31.0 dev.langchain4j langchain4j 0.31.0

And... output of the command: mvn dependency:tree -Dverbose....? Overly verbose in a way that is cryptic for me, but since you asked for it, I dump it here:

[INFO] --- dependency:2.8:tree (default-cli) @ Spring-2023-Selenium --- Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom (1.6 kB at 4.5 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.9/maven-2.0.9.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.9/maven-2.0.9.pom (19 kB at 498 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/8/maven-parent-8.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/8/maven-parent-8.pom (24 kB at 778 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1.pom (2.3 kB at 144 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom (1.5 kB at 88 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom (2.7 kB at 181 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom (2.1 kB at 108 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom (3.1 kB at 209 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom (2.0 kB at 137 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom (2.7 kB at 180 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom (1.9 kB at 136 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom (2.0 kB at 131 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom (7.8 kB at 410 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom (2.0 kB at 131 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom (1.8 kB at 113 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom (1.5 kB at 98 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-10/doxia-sink-api-1.0-alpha-10.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-10/doxia-sink-api-1.0-alpha-10.pom (1.3 kB at 90 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-10/doxia-1.0-alpha-10.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-10/doxia-1.0-alpha-10.pom (9.2 kB at 398 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/6/maven-parent-6.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/6/maven-parent-6.pom (20 kB at 1.1 MB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom (1.7 kB at 145 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.pom (2.1 kB at 175 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom (2.1 kB at 138 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom (1.3 kB at 99 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/2.0.5/maven-reporting-impl-2.0.5.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/2.0.5/maven-reporting-impl-2.0.5.pom (4.2 kB at 282 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom (2.6 kB at 165 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.6/maven-2.0.6.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.6/maven-2.0.6.pom (9.0 kB at 431 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/5/maven-parent-5.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/5/maven-parent-5.pom (15 kB at 662 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/3/apache-3.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/3/apache-3.pom (3.4 kB at 214 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom (2.0 kB at 154 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom (3.0 kB at 234 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom (1.9 kB at 136 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom (2.0 kB at 110 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom (2.6 kB at 218 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom (1.9 kB at 154 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom (1.6 kB at 131 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom (1.9 kB at 139 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom (1.5 kB at 97 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.pom (2.4 kB at 133 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.7/plexus-utils-1.5.7.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.7/plexus-utils-1.5.7.pom (8.1 kB at 424 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.pom (4.4 kB at 316 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.0/doxia-sitetools-1.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.0/doxia-sitetools-1.0.pom (9.6 kB at 533 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom (1.1 kB at 76 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.pom (2.0 kB at 109 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-20/plexus-container-default-1.0-alpha-20.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-20/plexus-container-default-1.0-alpha-20.pom (3.0 kB at 166 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-20/plexus-containers-1.0-alpha-20.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-20/plexus-containers-1.0-alpha-20.pom (1.9 kB at 171 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.3/plexus-utils-1.3.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.3/plexus-utils-1.3.pom (1.0 kB at 86 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom (7.2 kB at 602 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/plexus-classworlds-1.2-alpha-7.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/plexus-classworlds-1.2-alpha-7.pom (2.4 kB at 198 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.5/velocity-1.5.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.5/velocity-1.5.pom (7.8 kB at 597 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.pom Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.pom (9.9 kB at 662 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.pom (3.2 kB at 210 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.pom (2.3 kB at 150 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.0/doxia-modules-1.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.0/doxia-modules-1.0.pom (2.4 kB at 200 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.pom (2.7 kB at 224 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.pom (2.2 kB at 160 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.pom (1.6 kB at 145 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-doxia-tools/1.0.2/maven-doxia-tools-1.0.2.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-doxia-tools/1.0.2/maven-doxia-tools-1.0.2.pom (5.9 kB at 309 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/11/maven-shared-components-11.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/11/maven-shared-components-11.pom (8.3 kB at 642 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/1.4/commons-io-1.4.pom Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/1.4/commons-io-1.4.pom (13 kB at 774 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/7/commons-parent-7.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/7/commons-parent-7.pom (17 kB at 1.3 MB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom (1.8 kB at 146 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom (1.4 kB at 120 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom (424 B at 39 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom (3.9 kB at 206 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom (1.2 kB at 82 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.pom (9.1 kB at 649 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom (5.3 kB at 439 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/2.0.2/xml-apis-2.0.2.pom Downloaded from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/2.0.2/xml-apis-2.0.2.pom (346 B at 29 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom (8.1 kB at 576 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.3/plexus-archiver-2.3.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.3/plexus-archiver-2.3.pom (3.4 kB at 225 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.pom (2.2 kB at 123 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.2/plexus-components-1.2.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.2/plexus-components-1.2.pom (3.1 kB at 235 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom (19 kB at 1.4 MB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom (3.1 kB at 262 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.9/plexus-utils-3.0.9.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.9/plexus-utils-3.0.9.pom (3.1 kB at 224 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.pom (3.9 kB at 353 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/10/maven-shared-components-10.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/10/maven-shared-components-10.pom (8.4 kB at 527 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.pom (4.1 kB at 290 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/8/maven-shared-components-8.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/8/maven-shared-components-8.pom (2.7 kB at 243 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/7/maven-parent-7.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/7/maven-parent-7.pom (21 kB at 1.8 MB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.2/maven-artifact-2.0.2.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.2/maven-artifact-2.0.2.pom (765 B at 70 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.2/maven-2.0.2.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.2/maven-2.0.2.pom (13 kB at 1.1 MB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.pom (767 B at 70 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.pom (1.4 kB at 127 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.2/maven-repository-metadata-2.0.2.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.2/maven-repository-metadata-2.0.2.pom (1.3 kB at 93 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.pom (588 B at 37 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6.pom (6.4 kB at 582 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.6/plexus-utils-1.4.6.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.6/plexus-utils-1.4.6.pom (2.3 kB at 189 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.pom (5.3 kB at 408 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12.pom (9.8 kB at 817 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-analyzer/1.4/maven-dependency-analyzer-1.4.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-analyzer/1.4/maven-dependency-analyzer-1.4.pom (5.2 kB at 368 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.5/maven-project-2.0.5.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.5/maven-project-2.0.5.pom (1.8 kB at 154 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.5/maven-2.0.5.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.5/maven-2.0.5.pom (5.7 kB at 519 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.5/maven-settings-2.0.5.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.5/maven-settings-2.0.5.pom (1.7 kB at 152 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.5/maven-model-2.0.5.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.5/maven-model-2.0.5.pom (2.7 kB at 247 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.5/maven-profile-2.0.5.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.5/maven-profile-2.0.5.pom (1.7 kB at 118 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.5/maven-artifact-manager-2.0.5.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.5/maven-artifact-manager-2.0.5.pom (1.8 kB at 167 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.5/maven-repository-metadata-2.0.5.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.5/maven-repository-metadata-2.0.5.pom (1.5 kB at 135 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.5/maven-artifact-2.0.5.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.5/maven-artifact-2.0.5.pom (727 B at 52 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.pom (6.8 kB at 251 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.2.0/maven-project-2.2.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.2.0/maven-project-2.2.0.pom (2.8 kB at 231 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.2.0/maven-2.2.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.2.0/maven-2.2.0.pom (22 kB at 1.6 MB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.2.0/maven-settings-2.2.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.2.0/maven-settings-2.2.0.pom (2.2 kB at 168 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.2.0/maven-model-2.2.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.2.0/maven-model-2.2.0.pom (3.2 kB at 249 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.2.0/maven-profile-2.2.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.2.0/maven-profile-2.2.0.pom (2.2 kB at 197 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.2.0/maven-artifact-manager-2.2.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.2.0/maven-artifact-manager-2.2.0.pom (3.1 kB at 222 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.2.0/maven-repository-metadata-2.2.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.2.0/maven-repository-metadata-2.2.0.pom (1.9 kB at 156 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.2.0/maven-artifact-2.2.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.2.0/maven-artifact-2.2.0.pom (1.6 kB at 144 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.2.0/maven-plugin-registry-2.2.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.2.0/maven-plugin-registry-2.2.0.pom (1.9 kB at 161 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.pom (3.8 kB at 313 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom (8.7 kB at 622 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.8/maven-artifact-2.0.8.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.8/maven-artifact-2.0.8.pom (1.6 kB at 147 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.8/maven-2.0.8.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.8/maven-2.0.8.pom (12 kB at 711 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.8/maven-model-2.0.8.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.8/maven-model-2.0.8.pom (3.1 kB at 224 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.8/maven-project-2.0.8.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.8/maven-project-2.0.8.pom (2.7 kB at 45 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.8/maven-settings-2.0.8.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.8/maven-settings-2.0.8.pom (2.1 kB at 147 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.8/maven-profile-2.0.8.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.8/maven-profile-2.0.8.pom (2.0 kB at 157 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8.pom (2.7 kB at 208 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.8/maven-repository-metadata-2.0.8.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.8/maven-repository-metadata-2.0.8.pom (1.9 kB at 136 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.8/maven-plugin-registry-2.0.8.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.8/maven-plugin-registry-2.0.8.pom (2.0 kB at 67 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.8/maven-plugin-api-2.0.8.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.8/maven-plugin-api-2.0.8.pom (1.5 kB at 93 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.pom (2.8 kB at 184 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.pom (4.0 kB at 367 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom (15 kB at 1.3 MB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.pom (2.8 kB at 234 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/3.4/xbean-3.4.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/3.4/xbean-3.4.pom (19 kB at 1.5 MB/s) Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.pom Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.pom (5.3 kB at 446 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.2/junit-3.8.2.pom Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.2/junit-3.8.2.pom (747 B at 53 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-invoker/2.0.11/maven-invoker-2.0.11.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-invoker/2.0.11/maven-invoker-2.0.11.pom (5.1 kB at 362 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom (9.3 kB at 849 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/13/maven-parent-13.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/13/maven-parent-13.pom (23 kB at 1.9 MB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar (89 kB at 4.4 MB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar (13 kB at 859 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar (87 kB at 3.1 MB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar (49 kB at 832 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar (160 kB at 2.8 MB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar (35 kB at 552 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar (29 kB at 447 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar (122 kB at 1.7 MB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar (21 kB at 312 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar (10 kB at 135 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.jar (30 kB at 396 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar (13 kB at 174 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/2.0.5/maven-reporting-impl-2.0.5.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar (14 kB at 172 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar (37 kB at 463 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-doxia-tools/1.0.2/maven-doxia-tools-1.0.2.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar (25 kB at 282 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/1.4/commons-io-1.4.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar (58 kB at 643 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.jar (55 kB at 585 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.6/commons-digester-1.6.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/2.0.5/maven-reporting-impl-2.0.5.jar (21 kB at 215 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-doxia-tools/1.0.2/maven-doxia-tools-1.0.2.jar (41 kB at 424 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/1.4/commons-io-1.4.jar (109 kB at 1.1 MB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar (109 kB at 994 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.jar Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar (38 kB at 339 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.jar Downloaded from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.jar (91 kB at 792 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.5/velocity-1.5.jar Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.6/commons-digester-1.6.jar (168 kB at 1.4 MB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.jar (7.7 kB at 62 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.jar (11 kB at 85 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.jar (47 kB at 372 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.jar (49 kB at 377 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.jar (19 kB at 137 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.3/plexus-archiver-2.3.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.jar (47 kB at 339 kB/s) Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.jar (28 kB at 199 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.9/plexus-utils-3.0.9.jar Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.jar (22 kB at 152 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.jar (38 kB at 244 kB/s) Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.3/plexus-archiver-2.3.jar (186 kB at 1.1 MB/s) Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.jar (39 kB at 239 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.jar Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.jar Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-analyzer/1.4/maven-dependency-analyzer-1.4.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.9/plexus-utils-3.0.9.jar (232 kB at 1.3 MB/s) Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.5/velocity-1.5.jar (392 kB at 2.3 MB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.jar Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.jar (43 kB at 239 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.jar (58 kB at 308 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-invoker/2.0.11/maven-invoker-2.0.11.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-analyzer/1.4/maven-dependency-analyzer-1.4.jar (27 kB at 144 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.jar (32 kB at 165 kB/s) Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.jar (60 kB at 306 kB/s) Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-invoker/2.0.11/maven-invoker-2.0.11.jar (29 kB at 145 kB/s) Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.jar (134 kB at 639 kB/s) Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar (575 kB at 2.5 MB/s) [WARNING] While downloading mysql:mysql-connector-java:8.0.33 This artifact has been relocated to com.mysql:mysql-connector-j:8.0.33. MySQL Connector/J artifacts moved to reverse-DNS compliant Maven 2+ coordinates.

[INFO] org.example:Spring-2023-Selenium:jar:1.0-SNAPSHOT [INFO] +- com.google.cloud:google-cloud-vertexai:jar:0.4.0:compile [INFO] | +- io.grpc:grpc-api:jar:1.61.0:compile [INFO] | +- com.google.code.findbugs:jsr305:jar:3.0.2:compile [INFO] | +- com.google.errorprone:error_prone_annotations:jar:2.24.1:compile [INFO] | +- io.grpc:grpc-stub:jar:1.61.0:compile [INFO] | +- io.grpc:grpc-protobuf:jar:1.61.0:compile [INFO] | +- io.grpc:grpc-protobuf-lite:jar:1.61.0:runtime [INFO] | +- com.google.api:api-common:jar:2.25.0:compile [INFO] | +- com.google.auto.value:auto-value-annotations:jar:1.10.4:compile [INFO] | +- javax.annotation:javax.annotation-api:jar:1.3.2:compile [INFO] | +- com.google.protobuf:protobuf-java:jar:3.25.2:compile [INFO] | +- com.google.api.grpc:proto-google-common-protos:jar:2.33.0:compile [INFO] | +- com.google.api.grpc:proto-google-cloud-vertexai-v1:jar:0.4.0:compile [INFO] | | +- (com.google.auto.value:auto-value-annotations:jar:1.10.4:compile - omitted for duplicate) [INFO] | | +- (com.google.code.findbugs:jsr305:jar:3.0.2:compile - omitted for duplicate) [INFO] | | +- (javax.annotation:javax.annotation-api:jar:1.3.2:compile - omitted for duplicate) [INFO] | | +- (com.google.errorprone:error_prone_annotations:jar:2.24.1:compile - omitted for duplicate) [INFO] | | +- (com.google.guava:failureaccess:jar:1.0.1:compile - omitted for duplicate) [INFO] | | +- (com.google.guava:listenablefuture:jar:9999.0-empty-to-avoid-conflict-with-guava:compile - omitted for duplicate) [INFO] | | +- (org.checkerframework:checker-qual:jar:3.42.0:compile - omitted for duplicate) [INFO] | | - (com.google.j2objc:j2objc-annotations:jar:2.8:compile - omitted for duplicate) [INFO] | +- com.google.guava:guava:jar:32.1.3-jre:compile [INFO] | +- com.google.guava:failureaccess:jar:1.0.1:compile [INFO] | +- com.google.guava:listenablefuture:jar:9999.0-empty-to-avoid-conflict-with-guava:compile [INFO] | +- org.checkerframework:checker-qual:jar:3.42.0:compile [INFO] | +- com.google.j2objc:j2objc-annotations:jar:2.8:compile [INFO] | +- com.google.api:gax:jar:2.42.0:compile [INFO] | +- com.google.auth:google-auth-library-credentials:jar:1.22.0:compile [INFO] | +- io.opencensus:opencensus-api:jar:0.31.1:compile [INFO] | +- io.grpc:grpc-context:jar:1.61.0:compile [INFO] | +- com.google.auth:google-auth-library-oauth2-http:jar:1.22.0:compile [INFO] | +- com.google.api:gax-grpc:jar:2.42.0:compile [INFO] | +- io.grpc:grpc-inprocess:jar:1.61.0:compile [INFO] | +- io.grpc:grpc-core:jar:1.61.0:compile [INFO] | +- com.google.android:annotations:jar:4.1.1.4:runtime [INFO] | +- org.codehaus.mojo:animal-sniffer-annotations:jar:1.23:runtime [INFO] | +- io.grpc:grpc-util:jar:1.61.0:runtime [INFO] | +- io.grpc:grpc-alts:jar:1.61.0:compile [INFO] | +- io.grpc:grpc-grpclb:jar:1.61.0:compile [INFO] | +- org.conscrypt:conscrypt-openjdk-uber:jar:2.5.2:compile [INFO] | +- io.grpc:grpc-auth:jar:1.61.0:compile [INFO] | +- io.grpc:grpc-netty-shaded:jar:1.61.0:compile [INFO] | +- io.perfmark:perfmark-api:jar:0.27.0:runtime [INFO] | +- io.grpc:grpc-googleapis:jar:1.61.0:runtime [INFO] | +- io.grpc:grpc-xds:jar:1.61.0:runtime [INFO] | +- io.opencensus:opencensus-proto:jar:0.2.0:runtime [INFO] | +- io.grpc:grpc-services:jar:1.61.0:runtime [INFO] | +- com.google.re2j:re2j:jar:1.7:runtime [INFO] | +- com.google.api:gax-httpjson:jar:2.42.0:compile [INFO] | +- com.google.code.gson:gson:jar:2.10.1:compile [INFO] | +- com.google.http-client:google-http-client:jar:1.43.3:compile [INFO] | +- org.apache.httpcomponents:httpclient:jar:4.5.14:compile [INFO] | +- commons-logging:commons-logging:jar:1.2:compile [INFO] | +- commons-codec:commons-codec:jar:1.16.0:compile [INFO] | +- org.apache.httpcomponents:httpcore:jar:4.4.16:compile [INFO] | +- io.opencensus:opencensus-contrib-http-util:jar:0.31.1:compile [INFO] | +- com.google.http-client:google-http-client-gson:jar:1.43.3:compile [INFO] | +- com.google.protobuf:protobuf-java-util:jar:3.25.2:compile [INFO] | +- com.google.api.grpc:grpc-google-common-protos:jar:2.33.0:compile [INFO] | +- com.google.api.grpc:proto-google-iam-v1:jar:1.28.0:compile [INFO] | +- com.google.api.grpc:grpc-google-iam-v1:jar:1.28.0:compile [INFO] | - org.threeten:threetenbp:jar:1.6.8:compile [INFO] +- org.seleniumhq.selenium:selenium-java:jar:4.8.1:compile [INFO] | +- org.seleniumhq.selenium:selenium-api:jar:4.8.1:compile [INFO] | +- (org.seleniumhq.selenium:selenium-chrome-driver:jar:4.8.1:compile - omitted for duplicate) [INFO] | +- org.seleniumhq.selenium:selenium-devtools-v108:jar:4.8.1:compile [INFO] | | +- (com.google.auto.service:auto-service-annotations:jar:1.0.1:compile - omitted for duplicate) [INFO] | | +- (com.google.auto.service:auto-service:jar:1.0.1:compile - omitted for duplicate) [INFO] | | +- (com.google.guava:guava:jar:32.1.3-jre:compile - version managed from 31.1-jre; omitted for duplicate) [INFO] | | +- (org.seleniumhq.selenium:selenium-api:jar:4.8.1:compile - omitted for duplicate) [INFO] | | +- (org.seleniumhq.selenium:selenium-json:jar:4.8.1:compile - omitted for duplicate) [INFO] | | - (org.seleniumhq.selenium:selenium-remote-driver:jar:4.8.1:compile - omitted for duplicate) [INFO] | +- org.seleniumhq.selenium:selenium-devtools-v109:jar:4.8.1:compile [INFO] | | +- (com.google.auto.service:auto-service-annotations:jar:1.0.1:compile - omitted for duplicate) [INFO] | | +- (com.google.auto.service:auto-service:jar:1.0.1:compile - omitted for duplicate) [INFO] | | +- (com.google.guava:guava:jar:32.1.3-jre:compile - version managed from 31.1-jre; omitted for duplicate) [INFO] | | +- (org.seleniumhq.selenium:selenium-api:jar:4.8.1:compile - omitted for duplicate) [INFO] | | +- (org.seleniumhq.selenium:selenium-json:jar:4.8.1:compile - omitted for duplicate) [INFO] | | - (org.seleniumhq.selenium:selenium-remote-driver:jar:4.8.1:compile - omitted for duplicate) [INFO] | +- org.seleniumhq.selenium:selenium-devtools-v110:jar:4.8.1:compile [INFO] | | +- (com.google.auto.service:auto-service-annotations:jar:1.0.1:compile - omitted for duplicate) [INFO] | | +- (com.google.auto.service:auto-service:jar:1.0.1:compile - omitted for duplicate) [INFO] | | +- (com.google.guava:guava:jar:32.1.3-jre:compile - version managed from 31.1-jre; omitted for duplicate) [INFO] | | +- (org.seleniumhq.selenium:selenium-api:jar:4.8.1:compile - omitted for duplicate) [INFO] | | +- (org.seleniumhq.selenium:selenium-json:jar:4.8.1:compile - omitted for duplicate) [INFO] | | - (org.seleniumhq.selenium:selenium-remote-driver:jar:4.8.1:compile - omitted for duplicate) [INFO] | +- org.seleniumhq.selenium:selenium-devtools-v85:jar:4.8.1:compile [INFO] | | +- (com.google.auto.service:auto-service-annotations:jar:1.0.1:compile - omitted for duplicate) [INFO] | | +- (com.google.auto.service:auto-service:jar:1.0.1:compile - omitted for duplicate) [INFO] | | +- (com.google.guava:guava:jar:32.1.3-jre:compile - version managed from 31.1-jre; omitted for duplicate) [INFO] | | +- (org.seleniumhq.selenium:selenium-api:jar:4.8.1:compile - omitted for duplicate) [INFO] | | +- (org.seleniumhq.selenium:selenium-json:jar:4.8.1:compile - omitted for duplicate) [INFO] | | - (org.seleniumhq.selenium:selenium-remote-driver:jar:4.8.1:compile - omitted for duplicate) [INFO] | +- org.seleniumhq.selenium:selenium-edge-driver:jar:4.8.1:compile [INFO] | | +- (com.google.auto.service:auto-service-annotations:jar:1.0.1:compile - omitted for duplicate) [INFO] | | +- (com.google.auto.service:auto-service:jar:1.0.1:compile - omitted for duplicate) [INFO] | | +- (com.google.guava:guava:jar:32.1.3-jre:compile - version managed from 31.1-jre; omitted for duplicate) [INFO] | | +- (org.seleniumhq.selenium:selenium-api:jar:4.8.1:compile - omitted for duplicate) [INFO] | | +- (org.seleniumhq.selenium:selenium-chromium-driver:jar:4.8.1:compile - omitted for duplicate) [INFO] | | - (org.seleniumhq.selenium:selenium-remote-driver:jar:4.8.1:compile - omitted for duplicate) [INFO] | +- org.seleniumhq.selenium:selenium-firefox-driver:jar:4.8.1:compile [INFO] | | +- (com.google.auto.service:auto-service-annotations:jar:1.0.1:compile - omitted for duplicate) [INFO] | | +- (com.google.auto.service:auto-service:jar:1.0.1:compile - omitted for duplicate) [INFO] | | +- (com.google.guava:guava:jar:32.1.3-jre:compile - version managed from 31.1-jre; omitted for duplicate) [INFO] | | +- (org.seleniumhq.selenium:selenium-api:jar:4.8.1:compile - omitted for duplicate) [INFO] | | +- (org.seleniumhq.selenium:selenium-devtools-v85:jar:4.8.1:compile - omitted for duplicate) [INFO] | | +- (org.seleniumhq.selenium:selenium-http:jar:4.8.1:compile - omitted for duplicate) [INFO] | | +- (org.seleniumhq.selenium:selenium-json:jar:4.8.1:compile - omitted for duplicate) [INFO] | | - (org.seleniumhq.selenium:selenium-remote-driver:jar:4.8.1:compile - omitted for duplicate) [INFO] | +- org.seleniumhq.selenium:selenium-ie-driver:jar:4.8.1:compile [INFO] | | +- (com.google.auto.service:auto-service-annotations:jar:1.0.1:compile - omitted for duplicate) [INFO] | | +- (com.google.auto.service:auto-service:jar:1.0.1:compile - omitted for duplicate) [INFO] | | +- (org.seleniumhq.selenium:selenium-api:jar:4.8.1:compile - omitted for duplicate) [INFO] | | - (org.seleniumhq.selenium:selenium-remote-driver:jar:4.8.1:compile - omitted for duplicate) [INFO] | +- org.seleniumhq.selenium:selenium-remote-driver:jar:4.8.1:compile [INFO] | | +- com.beust:jcommander:jar:1.82:compile [INFO] | | +- (com.google.auto.service:auto-service-annotations:jar:1.0.1:compile - omitted for duplicate) [INFO] | | +- (com.google.auto.service:auto-service:jar:1.0.1:compile - omitted for duplicate) [INFO] | | +- (com.google.guava:guava:jar:32.1.3-jre:compile - version managed from 31.1-jre; omitted for duplicate) [INFO] | | +- io.netty:netty-buffer:jar:4.1.87.Final:compile [INFO] | | | - (io.netty:netty-common:jar:4.1.87.Final:compile - omitted for duplicate) [INFO] | | +- io.netty:netty-codec-http:jar:4.1.87.Final:compile [INFO] | | | +- (io.netty:netty-common:jar:4.1.87.Final:compile - omitted for duplicate) [INFO] | | | +- (io.netty:netty-buffer:jar:4.1.87.Final:compile - omitted for duplicate) [INFO] | | | +- (io.netty:netty-transport:jar:4.1.87.Final:compile - omitted for duplicate) [INFO] | | | +- io.netty:netty-codec:jar:4.1.87.Final:compile [INFO] | | | | +- (io.netty:netty-common:jar:4.1.87.Final:compile - omitted for duplicate) [INFO] | | | | +- (io.netty:netty-buffer:jar:4.1.87.Final:compile - omitted for duplicate) [INFO] | | | | - (io.netty:netty-transport:jar:4.1.87.Final:compile - omitted for duplicate) [INFO] | | | - io.netty:netty-handler:jar:4.1.87.Final:compile [INFO] | | | +- (io.netty:netty-common:jar:4.1.87.Final:compile - omitted for duplicate) [INFO] | | | +- (io.netty:netty-resolver:jar:4.1.87.Final:compile - omitted for duplicate) [INFO] | | | +- (io.netty:netty-buffer:jar:4.1.87.Final:compile - omitted for duplicate) [INFO] | | | +- (io.netty:netty-transport:jar:4.1.87.Final:compile - omitted for duplicate) [INFO] | | | +- (io.netty:netty-transport-native-unix-common:jar:4.1.87.Final:compile - omitted for duplicate) [INFO] | | | - (io.netty:netty-codec:jar:4.1.87.Final:compile - omitted for duplicate) [INFO] | | +- io.netty:netty-common:jar:4.1.87.Final:compile [INFO] | | +- io.netty:netty-transport-classes-epoll:jar:4.1.87.Final:compile [INFO] | | | +- (io.netty:netty-common:jar:4.1.87.Final:compile - omitted for duplicate) [INFO] | | | +- (io.netty:netty-buffer:jar:4.1.87.Final:compile - omitted for duplicate) [INFO] | | | +- (io.netty:netty-transport:jar:4.1.87.Final:compile - omitted for duplicate) [INFO] | | | - (io.netty:netty-transport-native-unix-common:jar:4.1.87.Final:compile - omitted for duplicate) [INFO] | | +- io.netty:netty-transport-classes-kqueue:jar:4.1.87.Final:compile [INFO] | | | +- (io.netty:netty-common:jar:4.1.87.Final:compile - omitted for duplicate) [INFO] | | | +- (io.netty:netty-buffer:jar:4.1.87.Final:compile - omitted for duplicate) [INFO] | | | +- (io.netty:netty-transport:jar:4.1.87.Final:compile - omitted for duplicate) [INFO] | | | - (io.netty:netty-transport-native-unix-common:jar:4.1.87.Final:compile - omitted for duplicate) [INFO] | | +- io.netty:netty-transport-native-epoll:jar:4.1.87.Final:runtime [INFO] | | | +- (io.netty:netty-common:jar:4.1.87.Final:runtime - omitted for duplicate) [INFO] | | | +- (io.netty:netty-buffer:jar:4.1.87.Final:runtime - omitted for duplicate) [INFO] | | | +- (io.netty:netty-transport:jar:4.1.87.Final:runtime - omitted for duplicate) [INFO] | | | +- (io.netty:netty-transport-native-unix-common:jar:4.1.87.Final:runtime - omitted for duplicate) [INFO] | | | - (io.netty:netty-transport-classes-epoll:jar:4.1.87.Final:runtime - omitted for duplicate) [INFO] | | +- io.netty:netty-transport-native-kqueue:jar:4.1.87.Final:runtime [INFO] | | | +- (io.netty:netty-common:jar:4.1.87.Final:runtime - omitted for duplicate) [INFO] | | | +- (io.netty:netty-buffer:jar:4.1.87.Final:runtime - omitted for duplicate) [INFO] | | | +- (io.netty:netty-transport:jar:4.1.87.Final:runtime - omitted for duplicate) [INFO] | | | +- (io.netty:netty-transport-native-unix-common:jar:4.1.87.Final:runtime - omitted for duplicate) [INFO] | | | - (io.netty:netty-transport-classes-kqueue:jar:4.1.87.Final:runtime - omitted for duplicate) [INFO] | | +- io.netty:netty-transport-native-unix-common:jar:4.1.87.Final:compile [INFO] | | | +- (io.netty:netty-common:jar:4.1.87.Final:compile - omitted for duplicate) [INFO] | | | +- (io.netty:netty-buffer:jar:4.1.87.Final:compile - omitted for duplicate) [INFO] | | | - (io.netty:netty-transport:jar:4.1.87.Final:compile - omitted for duplicate) [INFO] | | +- io.netty:netty-transport:jar:4.1.87.Final:compile [INFO] | | | +- (io.netty:netty-common:jar:4.1.87.Final:compile - omitted for duplicate) [INFO] | | | +- (io.netty:netty-buffer:jar:4.1.87.Final:compile - omitted for duplicate) [INFO] | | | - io.netty:netty-resolver:jar:4.1.87.Final:compile [INFO] | | | - (io.netty:netty-common:jar:4.1.87.Final:compile - omitted for duplicate) [INFO] | | +- io.opentelemetry:opentelemetry-api:jar:1.22.0:compile [INFO] | | | - (io.opentelemetry:opentelemetry-context:jar:1.22.0:compile - omitted for duplicate) [INFO] | | +- io.opentelemetry:opentelemetry-context:jar:1.22.0:compile [INFO] | | +- io.opentelemetry:opentelemetry-exporter-logging:jar:1.22.0:compile [INFO] | | | +- (io.opentelemetry:opentelemetry-sdk:jar:1.22.0:compile - omitted for duplicate) [INFO] | | | +- io.opentelemetry:opentelemetry-sdk-metrics:jar:1.22.0:compile [INFO] | | | | +- (io.opentelemetry:opentelemetry-api:jar:1.22.0:compile - omitted for duplicate) [INFO] | | | | - (io.opentelemetry:opentelemetry-sdk-common:jar:1.22.0:compile - omitted for duplicate) [INFO] | | | +- io.opentelemetry:opentelemetry-sdk-logs:jar:1.22.0-alpha:compile [INFO] | | | | +- io.opentelemetry:opentelemetry-api-logs:jar:1.22.0-alpha:compile [INFO] | | | | | - (io.opentelemetry:opentelemetry-api:jar:1.22.0:compile - omitted for duplicate) [INFO] | | | | - (io.opentelemetry:opentelemetry-sdk-common:jar:1.22.0:compile - omitted for duplicate) [INFO] | | | - (io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:jar:1.22.0:runtime - omitted for duplicate) [INFO] | | +- io.opentelemetry:opentelemetry-sdk-common:jar:1.22.0:compile [INFO] | | | +- (io.opentelemetry:opentelemetry-api:jar:1.22.0:compile - omitted for duplicate) [INFO] | | | - (io.opentelemetry:opentelemetry-semconv:jar:1.22.0-alpha:runtime - omitted for duplicate) [INFO] | | +- io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:jar:1.22.0:compile [INFO] | | | +- (io.opentelemetry:opentelemetry-sdk:jar:1.22.0:compile - omitted for duplicate) [INFO] | | | +- (io.opentelemetry:opentelemetry-sdk-metrics:jar:1.22.0:runtime - omitted for duplicate) [INFO] | | | - (io.opentelemetry:opentelemetry-sdk-logs:jar:1.22.0-alpha:runtime - omitted for duplicate) [INFO] | | +- io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:jar:1.22.0-alpha:compile [INFO] | | | +- (io.opentelemetry:opentelemetry-sdk:jar:1.22.0:compile - omitted for duplicate) [INFO] | | | +- (io.opentelemetry:opentelemetry-sdk-metrics:jar:1.22.0:compile - omitted for duplicate) [INFO] | | | +- (io.opentelemetry:opentelemetry-sdk-logs:jar:1.22.0-alpha:compile - omitted for duplicate) [INFO] | | | +- (io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:jar:1.22.0:compile - omitted for duplicate) [INFO] | | | - (io.opentelemetry:opentelemetry-semconv:jar:1.22.0-alpha:runtime - omitted for duplicate) [INFO] | | +- io.opentelemetry:opentelemetry-sdk-trace:jar:1.22.0:compile [INFO] | | | +- (io.opentelemetry:opentelemetry-api:jar:1.22.0:compile - omitted for duplicate) [INFO] | | | +- (io.opentelemetry:opentelemetry-sdk-common:jar:1.22.0:compile - omitted for duplicate) [INFO] | | | - (io.opentelemetry:opentelemetry-semconv:jar:1.22.0-alpha:runtime - omitted for duplicate) [INFO] | | +- io.opentelemetry:opentelemetry-sdk:jar:1.22.0:compile [INFO] | | | +- (io.opentelemetry:opentelemetry-api:jar:1.22.0:compile - omitted for duplicate) [INFO] | | | +- (io.opentelemetry:opentelemetry-sdk-common:jar:1.22.0:compile - omitted for duplicate) [INFO] | | | +- (io.opentelemetry:opentelemetry-sdk-trace:jar:1.22.0:compile - omitted for duplicate) [INFO] | | | +- (io.opentelemetry:opentelemetry-sdk-metrics:jar:1.22.0:compile - omitted for duplicate) [INFO] | | | - (io.opentelemetry:opentelemetry-sdk-logs:jar:1.22.0-alpha:runtime - omitted for duplicate) [INFO] | | +- io.opentelemetry:opentelemetry-semconv:jar:1.22.0-alpha:compile [INFO] | | | - (io.opentelemetry:opentelemetry-api:jar:1.22.0:compile - omitted for duplicate) [INFO] | | +- io.ous:jtoml:jar:2.0.0:compile [INFO] | | +- net.bytebuddy:byte-buddy:jar:1.12.22:compile [INFO] | | +- org.apache.commons:commons-exec:jar:1.3:compile [INFO] | | +- org.asynchttpclient:async-http-client:jar:2.12.3:compile [INFO] | | | +- org.asynchttpclient:async-http-client-netty-utils:jar:2.12.3:compile [INFO] | | | | +- (io.netty:netty-buffer:jar:4.1.60.Final:compile - omitted for conflict with 4.1.87.Final) [INFO] | | | | +- (org.slf4j:slf4j-api:jar:1.7.30:compile - omitted for duplicate) [INFO] | | | | - (com.sun.activation:jakarta.activation:jar:1.2.2:compile - omitted for duplicate) [INFO] | | | +- (io.netty:netty-codec-http:jar:4.1.60.Final:compile - omitted for conflict with 4.1.87.Final) [INFO] | | | +- (io.netty:netty-handler:jar:4.1.60.Final:compile - omitted for conflict with 4.1.87.Final) [INFO] | | | +- io.netty:netty-codec-socks:jar:4.1.60.Final:compile [INFO] | | | | +- (io.netty:netty-common:jar:4.1.60.Final:compile - omitted for conflict with 4.1.87.Final) [INFO] | | | | +- (io.netty:netty-buffer:jar:4.1.60.Final:compile - omitted for conflict with 4.1.87.Final) [INFO] | | | | +- (io.netty:netty-transport:jar:4.1.60.Final:compile - omitted for conflict with 4.1.87.Final) [INFO] | | | | - (io.netty:netty-codec:jar:4.1.60.Final:compile - omitted for conflict with 4.1.87.Final) [INFO] | | | +- io.netty:netty-handler-proxy:jar:4.1.60.Final:compile [INFO] | | | | +- (io.netty:netty-common:jar:4.1.60.Final:compile - omitted for conflict with 4.1.87.Final) [INFO] | | | | +- (io.netty:netty-buffer:jar:4.1.60.Final:compile - omitted for conflict with 4.1.87.Final) [INFO] | | | | +- (io.netty:netty-transport:jar:4.1.60.Final:compile - omitted for conflict with 4.1.87.Final) [INFO] | | | | +- (io.netty:netty-codec:jar:4.1.60.Final:compile - omitted for conflict with 4.1.87.Final) [INFO] | | | | +- (io.netty:netty-codec-socks:jar:4.1.60.Final:compile - omitted for duplicate) [INFO] | | | | - (io.netty:netty-codec-http:jar:4.1.60.Final:compile - omitted for conflict with 4.1.87.Final) [INFO] | | | +- io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.60.Final:compile [INFO] | | | | +- (io.netty:netty-common:jar:4.1.60.Final:compile - omitted for conflict with 4.1.87.Final) [INFO] | | | | +- (io.netty:netty-buffer:jar:4.1.60.Final:compile - omitted for conflict with 4.1.87.Final) [INFO] | | | | +- (io.netty:netty-transport:jar:4.1.60.Final:compile - omitted for conflict with 4.1.87.Final) [INFO] | | | | - (io.netty:netty-transport-native-unix-common:jar:4.1.60.Final:compile - omitted for conflict with 4.1.87.Final) [INFO] | | | +- io.netty:netty-transport-native-kqueue:jar:osx-x86_64:4.1.60.Final:compile [INFO] | | | | +- (io.netty:netty-common:jar:4.1.60.Final:compile - omitted for conflict with 4.1.87.Final) [INFO] | | | | +- (io.netty:netty-buffer:jar:4.1.60.Final:compile - omitted for conflict with 4.1.87.Final) [INFO] | | | | +- (io.netty:netty-transport:jar:4.1.60.Final:compile - omitted for conflict with 4.1.87.Final) [INFO] | | | | - (io.netty:netty-transport-native-unix-common:jar:4.1.60.Final:compile - omitted for conflict with 4.1.87.Final) [INFO] | | | +- org.reactivestreams:reactive-streams:jar:1.0.3:compile [INFO] | | | +- com.typesafe.netty:netty-reactive-streams:jar:2.0.4:compile [INFO] | | | | +- (io.netty:netty-handler:jar:4.1.43.Final:compile - omitted for conflict with 4.1.87.Final) [INFO] | | | | - (org.reactivestreams:reactive-streams:jar:1.0.3:compile - omitted for duplicate) [INFO] | | | +- (org.slf4j:slf4j-api:jar:1.7.36:compile - omitted for conflict with 2.0.7) [INFO] | | | - com.sun.activation:jakarta.activation:jar:1.2.2:compile [INFO] | | +- (org.seleniumhq.selenium:selenium-api:jar:4.8.1:compile - omitted for duplicate) [INFO] | | +- (org.seleniumhq.selenium:selenium-http:jar:4.8.1:compile - omitted for duplicate) [INFO] | | +- (org.seleniumhq.selenium:selenium-json:jar:4.8.1:compile - omitted for duplicate) [INFO] | | - org.seleniumhq.selenium:selenium-manager:jar:4.8.1:compile [INFO] | | +- (com.google.guava:guava:jar:32.1.3-jre:compile - version managed from 31.1-jre; omitted for duplicate) [INFO] | | - (org.seleniumhq.selenium:selenium-api:jar:4.8.1:compile - omitted for duplicate) [INFO] | +- org.seleniumhq.selenium:selenium-safari-driver:jar:4.8.1:compile [INFO] | | +- (com.google.auto.service:auto-service-annotations:jar:1.0.1:compile - omitted for duplicate) [INFO] | | +- (com.google.auto.service:auto-service:jar:1.0.1:compile - omitted for duplicate) [INFO] | | +- (com.google.guava:guava:jar:32.1.3-jre:compile - version managed from 31.1-jre; omitted for duplicate) [INFO] | | +- (org.seleniumhq.selenium:selenium-api:jar:4.8.1:compile - omitted for duplicate) [INFO] | | - (org.seleniumhq.selenium:selenium-remote-driver:jar:4.8.1:compile - omitted for duplicate) [INFO] | - org.seleniumhq.selenium:selenium-support:jar:4.8.1:compile [INFO] | +- (com.google.auto.service:auto-service-annotations:jar:1.0.1:compile - omitted for duplicate) [INFO] | +- (com.google.auto.service:auto-service:jar:1.0.1:compile - omitted for duplicate) [INFO] | +- (com.google.guava:guava:jar:32.1.3-jre:compile - version managed from 31.1-jre; omitted for duplicate) [INFO] | +- (net.bytebuddy:byte-buddy:jar:1.12.22:compile - omitted for duplicate) [INFO] | +- (org.seleniumhq.selenium:selenium-api:jar:4.8.1:compile - omitted for duplicate) [INFO] | +- (org.seleniumhq.selenium:selenium-json:jar:4.8.1:compile - omitted for duplicate) [INFO] | - (org.seleniumhq.selenium:selenium-remote-driver:jar:4.8.1:compile - omitted for duplicate) [INFO] +- org.seleniumhq.selenium:selenium-http-jdk-client:jar:4.8.1:compile [INFO] | +- com.google.auto.service:auto-service-annotations:jar:1.0.1:compile [INFO] | +- com.google.auto.service:auto-service:jar:1.0.1:compile [INFO] | | +- (com.google.auto.service:auto-service-annotations:jar:1.0.1:compile - omitted for duplicate) [INFO] | | +- com.google.auto:auto-common:jar:1.2:compile [INFO] | | | - (com.google.guava:guava:jar:32.1.3-jre:compile - version managed from 31.0.1-jre; omitted for duplicate) [INFO] | | - (com.google.guava:guava:jar:32.1.3-jre:compile - version managed from 31.0.1-jre; omitted for duplicate) [INFO] | +- (org.seleniumhq.selenium:selenium-api:jar:4.8.1:compile - omitted for duplicate) [INFO] | - org.seleniumhq.selenium:selenium-http:jar:4.8.1:compile [INFO] | +- (com.google.guava:guava:jar:32.1.3-jre:compile - version managed from 31.1-jre; omitted for duplicate) [INFO] | +- dev.failsafe:failsafe:jar:3.3.0:compile [INFO] | +- (org.seleniumhq.selenium:selenium-api:jar:4.8.1:compile - omitted for duplicate) [INFO] | - (org.seleniumhq.selenium:selenium-json:jar:4.8.1:compile - omitted for duplicate) [INFO] +- io.github.bonigarcia:webdrivermanager:jar:5.8.0:test [INFO] | +- (org.slf4j:slf4j-api:jar:2.0.12:compile - scope updated from test; omitted for duplicate) [INFO] | +- (com.google.code.gson:gson:jar:2.10.1:test - omitted for duplicate) [INFO] | +- com.github.docker-java:docker-java:jar:3.3.6:test [INFO] | | +- com.github.docker-java:docker-java-core:jar:3.3.6:test [INFO] | | | +- com.github.docker-java:docker-java-api:jar:3.3.6:test [INFO] | | | | +- com.fasterxml.jackson.core:jackson-annotations:jar:2.10.3:test [INFO] | | | | - (org.slf4j:slf4j-api:jar:1.7.30:test - omitted for conflict with 1.7.36) [INFO] | | | +- (com.github.docker-java:docker-java-transport:jar:3.3.6:test - omitted for duplicate) [INFO] | | | +- (org.slf4j:slf4j-api:jar:1.7.30:test - omitted for conflict with 1.7.36) [INFO] | | | +- (commons-io:commons-io:jar:2.13.0:test - omitted for conflict with 2.15.1) [INFO] | | | +- (org.apache.commons:commons-compress:jar:1.21:test - omitted for conflict with 1.26.1) [INFO] | | | +- (org.apache.commons:commons-lang3:jar:3.12.0:test - omitted for conflict with 3.14.0) [INFO] | | | +- com.fasterxml.jackson.core:jackson-databind:jar:2.10.3:test [INFO] | | | | +- (com.fasterxml.jackson.core:jackson-annotations:jar:2.10.3:test - omitted for duplicate) [INFO] | | | | - com.fasterxml.jackson.core:jackson-core:jar:2.10.3:test [INFO] | | | +- (com.google.guava:guava:jar:32.1.3-jre:test - version managed from 19.0; omitted for duplicate) [INFO] | | | - org.bouncycastle:bcpkix-jdk18on:jar:1.76:test [INFO] | | | +- org.bouncycastle:bcprov-jdk18on:jar:1.76:test [INFO] | | | - org.bouncycastle:bcutil-jdk18on:jar:1.76:test [INFO] | | | - (org.bouncycastle:bcprov-jdk18on:jar:1.76:test - omitted for duplicate) [INFO] | | - org.slf4j:jcl-over-slf4j:jar:1.7.30:test [INFO] | | - (org.slf4j:slf4j-api:jar:1.7.30:test - omitted for conflict with 1.7.36) [INFO] | +- com.github.docker-java:docker-java-transport-httpclient5:jar:3.3.6:test [INFO] | | +- com.github.docker-java:docker-java-transport:jar:3.3.6:test [INFO] | | +- (org.apache.httpcomponents.client5:httpclient5:jar:5.0.3:test - omitted for conflict with 5.2.1) [INFO] | | - (net.java.dev.jna:jna:jar:5.13.0:compile - scope updated from test; omitted for duplicate) [INFO] | +- org.brotli:dec:jar:0.1.2:test [INFO] | +- org.apache.commons:commons-lang3:jar:3.14.0:test [INFO] | +- (org.apache.commons:commons-compress:jar:1.26.1:compile - scope updated from test; omitted for duplicate) [INFO] | - org.apache.httpcomponents.client5:httpclient5:jar:5.2.1:test [INFO] | +- org.apache.httpcomponents.core5:httpcore5:jar:5.2:test [INFO] | +- org.apache.httpcomponents.core5:httpcore5-h2:jar:5.2:test [INFO] | | - (org.apache.httpcomponents.core5:httpcore5:jar:5.2:test - omitted for duplicate) [INFO] | - (org.slf4j:slf4j-api:jar:1.7.36:compile - scope updated from test; omitted for duplicate) [INFO] +- org.apache.maven.plugins:maven-surefire-plugin:jar:3.2.5:compile [INFO] | - org.apache.maven.surefire:maven-surefire-common:jar:3.2.5:compile [INFO] | +- org.apache.maven.surefire:surefire-api:jar:3.2.5:compile [INFO] | | +- org.apache.maven.surefire:surefire-logger-api:jar:3.2.5:compile [INFO] | | - (org.apache.maven.surefire:surefire-shared-utils:jar:3.2.5:compile - omitted for duplicate) [INFO] | +- org.apache.maven.surefire:surefire-extensions-api:jar:3.2.5:compile [INFO] | | - (org.apache.maven.surefire:surefire-shared-utils:jar:3.2.5:compile - omitted for duplicate) [INFO] | +- org.apache.maven.surefire:surefire-booter:jar:3.2.5:compile [INFO] | | +- (org.apache.maven.surefire:surefire-api:jar:3.2.5:compile - omitted for duplicate) [INFO] | | - org.apache.maven.surefire:surefire-extensions-spi:jar:3.2.5:compile [INFO] | | - (org.apache.maven.surefire:surefire-api:jar:3.2.5:compile - omitted for duplicate) [INFO] | +- org.eclipse.aether:aether-util:jar:1.0.0.v20140518:compile [INFO] | | - org.eclipse.aether:aether-api:jar:1.0.0.v20140518:compile [INFO] | +- org.apache.maven.shared:maven-common-artifact-filters:jar:3.1.1:compile [INFO] | | +- org.apache.maven:maven-artifact:jar:3.1.0:compile [INFO] | | | - org.codehaus.plexus:plexus-utils:jar:3.0.10:compile [INFO] | | +- org.apache.maven:maven-core:jar:3.1.0:compile [INFO] | | | +- org.apache.maven:maven-settings:jar:3.1.0:compile [INFO] | | | | - (org.codehaus.plexus:plexus-utils:jar:3.0.10:compile - omitted for duplicate) [INFO] | | | +- org.apache.maven:maven-settings-builder:jar:3.1.0:compile [INFO] | | | | +- (org.codehaus.plexus:plexus-utils:jar:3.0.10:compile - omitted for duplicate) [INFO] | | | | +- (org.codehaus.plexus:plexus-interpolation:jar:1.16:compile - omitted for duplicate) [INFO] | | | | +- (org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile - omitted for duplicate) [INFO] | | | | +- (org.apache.maven:maven-settings:jar:3.1.0:compile - omitted for duplicate) [INFO] | | | | - (org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile - omitted for duplicate) [INFO] | | | +- org.apache.maven:maven-repository-metadata:jar:3.1.0:compile [INFO] | | | | - (org.codehaus.plexus:plexus-utils:jar:3.0.10:compile - omitted for duplicate) [INFO] | | | +- (org.apache.maven:maven-artifact:jar:3.1.0:compile - omitted for duplicate) [INFO] | | | +- (org.apache.maven:maven-plugin-api:jar:3.1.0:compile - omitted for duplicate) [INFO] | | | +- org.apache.maven:maven-model-builder:jar:3.1.0:compile [INFO] | | | | +- (org.codehaus.plexus:plexus-utils:jar:3.0.10:compile - omitted for duplicate) [INFO] | | | | +- (org.codehaus.plexus:plexus-interpolation:jar:1.16:compile - omitted for duplicate) [INFO] | | | | - (org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile - omitted for duplicate) [INFO] | | | +- org.apache.maven:maven-aether-provider:jar:3.1.0:compile [INFO] | | | | +- (org.apache.maven:maven-model-builder:jar:3.1.0:compile - omitted for duplicate) [INFO] | | | | +- (org.apache.maven:maven-repository-metadata:jar:3.1.0:compile - omitted for duplicate) [INFO] | | | | +- (org.eclipse.aether:aether-api:jar:0.9.0.M2:compile - omitted for conflict with 1.0.0.v20140518) [INFO] | | | | +- org.eclipse.aether:aether-spi:jar:0.9.0.M2:compile [INFO] | | | | | - (org.eclipse.aether:aether-api:jar:0.9.0.M2:compile - omitted for conflict with 1.0.0.v20140518) [INFO] | | | | +- (org.eclipse.aether:aether-util:jar:0.9.0.M2:compile - omitted for conflict with 1.0.0.v20140518) [INFO] | | | | +- (org.eclipse.aether:aether-impl:jar:0.9.0.M2:compile - omitted for duplicate) [INFO] | | | | +- (org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.0.0.M2a:compile - omitted for duplicate) [INFO] | | | | +- (org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile - omitted for duplicate) [INFO] | | | | - (org.codehaus.plexus:plexus-utils:jar:3.0.10:compile - omitted for duplicate) [INFO] | | | +- org.eclipse.aether:aether-impl:jar:0.9.0.M2:compile [INFO] | | | | +- (org.eclipse.aether:aether-api:jar:0.9.0.M2:compile - omitted for conflict with 1.0.0.v20140518) [INFO] | | | | +- (org.eclipse.aether:aether-spi:jar:0.9.0.M2:compile - omitted for duplicate) [INFO] | | | | - (org.eclipse.aether:aether-util:jar:0.9.0.M2:compile - omitted for conflict with 1.0.0.v20140518) [INFO] | | | +- (org.eclipse.aether:aether-api:jar:0.9.0.M2:compile - omitted for conflict with 1.0.0.v20140518) [INFO] | | | +- (org.eclipse.aether:aether-util:jar:0.9.0.M2:compile - omitted for conflict with 1.0.0.v20140518) [INFO] | | | +- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.0.0.M2a:compile [INFO] | | | | +- javax.enterprise:cdi-api:jar:1.0:compile [INFO] | | | | | +- javax.annotation:jsr250-api:jar:1.0:compile [INFO] | | | | | - javax.inject:javax.inject:jar:1:compile [INFO] | | | | +- (com.google.guava:guava:jar:32.1.3-jre:compile - version managed from 10.0.1; omitted for duplicate) [INFO] | | | | +- org.sonatype.sisu:sisu-guice:jar:no_aop:3.1.0:compile [INFO] | | | | | +- (javax.inject:javax.inject:jar:1:compile - omitted for duplicate) [INFO] | | | | | - aopalliance:aopalliance:jar:1.0:compile [INFO] | | | | +- org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.0.0.M2a:compile [INFO] | | | | | - asm:asm:jar:3.3.1:compile [INFO] | | | | +- (org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile - omitted for duplicate) [INFO] | | | | +- (org.codehaus.plexus:plexus-classworlds:jar:2.4:compile - omitted for conflict with 2.4.2) [INFO] | | | | - (org.codehaus.plexus:plexus-utils:jar:2.1:compile - omitted for conflict with 3.0.10) [INFO] | | | +- org.codehaus.plexus:plexus-interpolation:jar:1.16:compile [INFO] | | | +- (org.codehaus.plexus:plexus-utils:jar:3.0.10:compile - omitted for duplicate) [INFO] | | | +- org.codehaus.plexus:plexus-classworlds:jar:2.4.2:compile [INFO] | | | +- org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile [INFO] | | | - org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile [INFO] | | | +- (org.codehaus.plexus:plexus-utils:jar:1.5.5:compile - omitted for conflict with 3.0.10) [INFO] | | | - org.sonatype.plexus:plexus-cipher:jar:1.4:compile [INFO] | | +- org.apache.maven:maven-plugin-api:jar:3.1.0:compile [INFO] | | | +- (org.apache.maven:maven-artifact:jar:3.1.0:compile - omitted for duplicate) [INFO] | | | - (org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.0.0.M2a:compile - omitted for duplicate) [INFO] | | - (commons-io:commons-io:jar:2.15.1:compile - omitted for conflict with 2.13.0) [INFO] | +- org.codehaus.plexus:plexus-java:jar:1.2.0:compile [INFO] | | +- org.ow2.asm:asm:jar:9.6:compile [INFO] | | - com.thoughtworks.qdox:qdox:jar:2.0.3:compile [INFO] | - org.apache.maven.surefire:surefire-shared-utils:jar:3.2.5:compile [INFO] +- org.seleniumhq.selenium:selenium-chrome-driver:jar:4.8.1:compile [INFO] | +- (com.google.auto.service:auto-service-annotations:jar:1.0.1:compile - omitted for duplicate) [INFO] | +- (com.google.auto.service:auto-service:jar:1.0.1:compile - omitted for duplicate) [INFO] | +- (com.google.guava:guava:jar:32.1.3-jre:compile - version managed from 31.1-jre; omitted for duplicate) [INFO] | +- (org.seleniumhq.selenium:selenium-api:jar:4.8.1:compile - omitted for duplicate) [INFO] | +- org.seleniumhq.selenium:selenium-chromium-driver:jar:4.8.1:compile [INFO] | | +- (com.google.auto.service:auto-service-annotations:jar:1.0.1:compile - omitted for duplicate) [INFO] | | +- (com.google.auto.service:auto-service:jar:1.0.1:compile - omitted for duplicate) [INFO] | | +- (com.google.guava:guava:jar:32.1.3-jre:compile - version managed from 31.1-jre; omitted for duplicate) [INFO] | | +- (org.seleniumhq.selenium:selenium-json:jar:4.8.1:compile - omitted for duplicate) [INFO] | | - (org.seleniumhq.selenium:selenium-remote-driver:jar:4.8.1:compile - omitted for duplicate) [INFO] | +- org.seleniumhq.selenium:selenium-json:jar:4.8.1:compile [INFO] | | - (org.seleniumhq.selenium:selenium-api:jar:4.8.1:compile - omitted for duplicate) [INFO] | - (org.seleniumhq.selenium:selenium-remote-driver:jar:4.8.1:compile - omitted for duplicate) [INFO] +- org.testng:testng:jar:7.6.1:test [INFO] | +- (com.google.code.findbugs:jsr305:jar:3.0.2:test - omitted for duplicate) [INFO] | +- (org.slf4j:slf4j-api:jar:1.7.36:compile - scope updated from test; omitted for duplicate) [INFO] | +- (com.beust:jcommander:jar:1.82:compile - scope updated from test; omitted for duplicate) [INFO] | - org.webjars:jquery:jar:3.6.0:test [INFO] +- commons-io:commons-io:jar:2.13.0:compile [INFO] +- org.slf4j:slf4j-api:jar:2.0.7:compile [INFO] +- org.slf4j:slf4j-simple:jar:2.0.7:test [INFO] | - (org.slf4j:slf4j-api:jar:2.0.7:test - omitted for duplicate) [INFO] +- com.mysql:mysql-connector-j:jar:8.0.33:compile [INFO] | - (com.google.protobuf:protobuf-java:jar:3.25.2:compile - version managed from 3.21.9; omitted for duplicate) [INFO] +- dev.langchain4j:langchain4j:jar:0.31.0:compile [INFO] | +- dev.langchain4j:langchain4j-core:jar:0.31.0:compile [INFO] | | +- (com.google.code.gson:gson:jar:2.10.1:compile - omitted for duplicate) [INFO] | | - (org.slf4j:slf4j-api:jar:2.0.7:compile - omitted for duplicate) [INFO] | +- org.apache.opennlp:opennlp-tools:jar:1.9.4:compile [INFO] | +- org.jsoup:jsoup:jar:1.16.1:compile [INFO] | - (org.slf4j:slf4j-api:jar:2.0.7:compile - omitted for duplicate) [INFO] +- dev.langchain4j:langchain4j-open-ai:jar:0.26.1:compile [INFO] | +- (dev.langchain4j:langchain4j-core:jar:0.26.1:compile - omitted for conflict with 0.31.0) [INFO] | +- dev.ai4j:openai4j:jar:0.13.0:compile [INFO] | | +- com.squareup.retrofit2:retrofit:jar:2.9.0:compile [INFO] | | | - (com.squareup.okhttp3:okhttp:jar:3.14.9:compile - omitted for conflict with 4.10.0) [INFO] | | +- com.squareup.retrofit2:converter-gson:jar:2.9.0:compile [INFO] | | | - (com.squareup.retrofit2:retrofit:jar:2.9.0:compile - omitted for duplicate) [INFO] | | +- (com.google.code.gson:gson:jar:2.10.1:compile - version managed from 2.8.9; omitted for duplicate) [INFO] | | +- com.squareup.okhttp3:okhttp:jar:4.10.0:compile [INFO] | | | +- com.squareup.okio:okio-jvm:jar:3.0.0:compile [INFO] | | | | +- (org.jetbrains.kotlin:kotlin-stdlib-jdk8:jar:1.5.31:compile - omitted for conflict with 1.6.10) [INFO] | | | | - org.jetbrains.kotlin:kotlin-stdlib-common:jar:1.5.31:compile [INFO] | | | - org.jetbrains.kotlin:kotlin-stdlib:jar:1.6.20:compile [INFO] | | | +- (org.jetbrains.kotlin:kotlin-stdlib-common:jar:1.6.20:compile - omitted for conflict with 1.5.31) [INFO] | | | - org.jetbrains:annotations:jar:13.0:compile [INFO] | | +- com.squareup.okhttp3:okhttp-sse:jar:4.10.0:compile [INFO] | | | +- (com.squareup.okhttp3:okhttp:jar:4.10.0:compile - omitted for duplicate) [INFO] | | | - org.jetbrains.kotlin:kotlin-stdlib-jdk8:jar:1.6.10:compile [INFO] | | | +- (org.jetbrains.kotlin:kotlin-stdlib:jar:1.6.10:compile - omitted for conflict with 1.6.20) [INFO] | | | - org.jetbrains.kotlin:kotlin-stdlib-jdk7:jar:1.6.10:compile [INFO] | | | - (org.jetbrains.kotlin:kotlin-stdlib:jar:1.6.10:compile - omitted for conflict with 1.6.20) [INFO] | | - (org.slf4j:slf4j-api:jar:2.0.7:compile - omitted for duplicate) [INFO] | - com.knuddels:jtokkit:jar:0.6.1:compile [INFO] +- dev.langchain4j:langchain4j-embeddings-all-minilm-l6-v2:jar:0.26.1:compile [INFO] | - dev.langchain4j:langchain4j-embeddings:jar:0.26.1:compile [INFO] | +- (dev.langchain4j:langchain4j-core:jar:0.26.1:compile - omitted for conflict with 0.31.0) [INFO] | +- com.microsoft.onnxruntime:onnxruntime:jar:1.16.3:compile [INFO] | - ai.djl:api:jar:0.25.0:compile [INFO] | +- (com.google.code.gson:gson:jar:2.10.1:compile - version managed from 2.8.9; omitted for duplicate) [INFO] | +- net.java.dev.jna:jna:jar:5.13.0:compile [INFO] | +- org.apache.commons:commons-compress:jar:1.26.1:compile [INFO] | - (org.slf4j:slf4j-api:jar:1.7.36:compile - omitted for conflict with 2.0.7) [INFO] +- org.tinylog:tinylog-impl:jar:2.6.2:compile [INFO] | - org.tinylog:tinylog-api:jar:2.6.2:compile [INFO] +- org.tinylog:slf4j-tinylog:jar:2.6.2:compile [INFO] | +- (org.slf4j:slf4j-api:jar:2.0.6:compile - omitted for conflict with 2.0.7) [INFO] | - (org.tinylog:tinylog-api:jar:2.6.2:compile - omitted for duplicate) [INFO] +- dev.langchain4j:langchain4j-vertex-ai:jar:0.31.0:compile [INFO] | +- (dev.langchain4j:langchain4j-core:jar:0.31.0:compile - omitted for duplicate) [INFO] | - com.google.cloud:google-cloud-aiplatform:jar:3.36.0:compile (version managed from 3.44.0) [INFO] | +- (io.grpc:grpc-api:jar:1.61.0:compile - omitted for duplicate) [INFO] | +- (com.google.code.findbugs:jsr305:jar:3.0.2:compile - omitted for duplicate) [INFO] | +- (com.google.errorprone:error_prone_annotations:jar:2.24.1:compile - omitted for duplicate) [INFO] | +- (io.grpc:grpc-stub:jar:1.61.0:compile - omitted for duplicate) [INFO] | +- (io.grpc:grpc-protobuf:jar:1.61.0:compile - omitted for duplicate) [INFO] | +- (io.grpc:grpc-protobuf-lite:jar:1.61.0:runtime - omitted for duplicate) [INFO] | +- (com.google.api:api-common:jar:2.25.0:compile - omitted for duplicate) [INFO] | +- (com.google.auto.value:auto-value-annotations:jar:1.10.4:compile - omitted for duplicate) [INFO] | +- (javax.annotation:javax.annotation-api:jar:1.3.2:compile - omitted for duplicate) [INFO] | +- (com.google.protobuf:protobuf-java:jar:3.25.2:compile - version managed from 3.21.9; omitted for duplicate) [INFO] | +- (com.google.api.grpc:proto-google-common-protos:jar:2.33.0:compile - omitted for duplicate) [INFO] | +- (com.google.api.grpc:grpc-google-common-protos:jar:2.33.0:compile - omitted for duplicate) [INFO] | +- (com.google.guava:failureaccess:jar:1.0.1:compile - omitted for duplicate) [INFO] | +- (com.google.guava:listenablefuture:jar:9999.0-empty-to-avoid-conflict-with-guava:compile - omitted for duplicate) [INFO] | +- (org.checkerframework:checker-qual:jar:3.42.0:compile - omitted for duplicate) [INFO] | +- (com.google.j2objc:j2objc-annotations:jar:2.8:compile - omitted for duplicate) [INFO] | +- com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1:jar:0.52.0:compile [INFO] | | +- (com.google.auto.value:auto-value-annotations:jar:1.10.4:compile - omitted for duplicate) [INFO] | | +- (com.google.code.findbugs:jsr305:jar:3.0.2:compile - omitted for duplicate) [INFO] | | +- (javax.annotation:javax.annotation-api:jar:1.3.2:compile - omitted for duplicate) [INFO] | | +- (com.google.errorprone:error_prone_annotations:jar:2.24.1:compile - omitted for duplicate) [INFO] | | +- (com.google.guava:failureaccess:jar:1.0.1:compile - omitted for duplicate) [INFO] | | +- (com.google.guava:listenablefuture:jar:9999.0-empty-to-avoid-conflict-with-guava:compile - omitted for duplicate) [INFO] | | +- (org.checkerframework:checker-qual:jar:3.42.0:compile - omitted for duplicate) [INFO] | | - (com.google.j2objc:j2objc-annotations:jar:2.8:compile - omitted for duplicate) [INFO] | +- com.google.api.grpc:proto-google-cloud-aiplatform-v1:jar:3.36.0:compile [INFO] | | +- (com.google.auto.value:auto-value-annotations:jar:1.10.4:compile - omitted for duplicate) [INFO] | | +- (com.google.code.findbugs:jsr305:jar:3.0.2:compile - omitted for duplicate) [INFO] | | +- (javax.annotation:javax.annotation-api:jar:1.3.2:compile - omitted for duplicate) [INFO] | | +- (com.google.errorprone:error_prone_annotations:jar:2.24.1:compile - omitted for duplicate) [INFO] | | +- (com.google.guava:failureaccess:jar:1.0.1:compile - omitted for duplicate) [INFO] | | +- (com.google.guava:listenablefuture:jar:9999.0-empty-to-avoid-conflict-with-guava:compile - omitted for duplicate) [INFO] | | +- (org.checkerframework:checker-qual:jar:3.42.0:compile - omitted for duplicate) [INFO] | | - (com.google.j2objc:j2objc-annotations:jar:2.8:compile - omitted for duplicate) [INFO] | +- (com.google.guava:guava:jar:32.1.3-jre:compile - version managed from 31.1-jre; omitted for duplicate) [INFO] | +- (com.google.api:gax:jar:2.42.0:compile - omitted for duplicate) [INFO] | +- (com.google.auth:google-auth-library-credentials:jar:1.22.0:compile - omitted for duplicate) [INFO] | +- (io.opencensus:opencensus-api:jar:0.31.1:compile - omitted for duplicate) [INFO] | +- (io.grpc:grpc-context:jar:1.61.0:compile - omitted for duplicate) [INFO] | +- (com.google.auth:google-auth-library-oauth2-http:jar:1.22.0:compile - omitted for duplicate) [INFO] | +- (com.google.http-client:google-http-client:jar:1.43.3:compile - omitted for duplicate) [INFO] | +- (org.apache.httpcomponents:httpclient:jar:4.5.14:compile - omitted for duplicate) [INFO] | +- (commons-codec:commons-codec:jar:1.16.0:compile - omitted for duplicate) [INFO] | +- (org.apache.httpcomponents:httpcore:jar:4.4.16:compile - omitted for duplicate) [INFO] | +- (io.opencensus:opencensus-contrib-http-util:jar:0.31.1:compile - omitted for duplicate) [INFO] | +- (com.google.http-client:google-http-client-gson:jar:1.43.3:compile - omitted for duplicate) [INFO] | +- (com.google.api:gax-grpc:jar:2.42.0:compile - omitted for duplicate) [INFO] | +- (io.grpc:grpc-inprocess:jar:1.61.0:compile - omitted for duplicate) [INFO] | +- (io.grpc:grpc-core:jar:1.61.0:compile - omitted for duplicate) [INFO] | +- (com.google.android:annotations:jar:4.1.1.4:runtime - omitted for duplicate) [INFO] | +- (org.codehaus.mojo:animal-sniffer-annotations:jar:1.23:runtime - omitted for duplicate) [INFO] | +- (io.grpc:grpc-util:jar:1.61.0:runtime - omitted for duplicate) [INFO] | +- (io.grpc:grpc-alts:jar:1.61.0:compile - omitted for duplicate) [INFO] | +- (io.grpc:grpc-grpclb:jar:1.61.0:compile - omitted for duplicate) [INFO] | +- (org.conscrypt:conscrypt-openjdk-uber:jar:2.5.2:compile - omitted for duplicate) [INFO] | +- (io.grpc:grpc-auth:jar:1.61.0:compile - omitted for duplicate) [INFO] | +- (io.grpc:grpc-netty-shaded:jar:1.61.0:compile - omitted for duplicate) [INFO] | +- (io.perfmark:perfmark-api:jar:0.27.0:runtime - omitted for duplicate) [INFO] | +- (io.grpc:grpc-googleapis:jar:1.61.0:runtime - omitted for duplicate) [INFO] | +- (io.grpc:grpc-xds:jar:1.61.0:runtime - omitted for duplicate) [INFO] | +- (io.opencensus:opencensus-proto:jar:0.2.0:runtime - omitted for duplicate) [INFO] | +- (io.grpc:grpc-services:jar:1.61.0:runtime - omitted for duplicate) [INFO] | +- (com.google.re2j:re2j:jar:1.7:runtime - omitted for duplicate) [INFO] | +- (org.threeten:threetenbp:jar:1.6.8:compile - omitted for duplicate) [INFO] | +- (com.google.api.grpc:proto-google-iam-v1:jar:1.28.0:compile - omitted for duplicate) [INFO] | +- (com.google.api.grpc:grpc-google-iam-v1:jar:1.28.0:compile - omitted for duplicate) [INFO] | +- (com.google.code.gson:gson:jar:2.10.1:runtime - version managed from 2.8.9; omitted for duplicate) [INFO] | - (com.google.protobuf:protobuf-java-util:jar:3.25.2:compile - omitted for duplicate) [INFO] - dev.langchain4j:langchain4j-vertex-ai-gemini:jar:0.31.0:compile [INFO] +- (dev.langchain4j:langchain4j-core:jar:0.31.0:compile - omitted for duplicate) [INFO] - (com.google.cloud:google-cloud-vertexai:jar:0.4.0:compile - version managed from 1.3.0; omitted for duplicate) [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 7.794 s [INFO] Finished at: 2024-06-26T15:20:33-04:00 [INFO] ------------------------------------------------------------------------ [WARNING] [WARNING] Plugin validation issues were detected in 2 plugin(s) [WARNING] [WARNING] org.apache.maven.plugins:maven-site-plugin:3.12.1 [WARNING] org.apache.maven.plugins:maven-dependency-plugin:2.8 [WARNING] [WARNING] For more or less details, use 'maven.plugin.validation' property with one of the values (case insensitive): [BRIEF, DEFAULT, VERBOSE] [WARNING]

caesarsiza commented 3 weeks ago

Strange, pom.xml isn't pasting...will try it a little later

glaforge commented 3 weeks ago

You can put the XML in a fenced code block (with the triple backticks)

Looking at the trace you pasted, I see com.google.cloud:google-cloud-vertexai:jar:0.4.0 which is a very old version. Somehow you're pulling that old version, and Maven prefers the one you specified, over the one required by the vertex-ai module, which should be version 1.5.0 I believe.

So there's clearly a problem of dependency in your project.

caesarsiza commented 3 weeks ago

@glaforge You couldn't be more right!

before:


<dependency>
    <groupId>com.google.cloud</groupId>
    <artifactId>google-cloud-vertexai</artifactId>
  </dependency>

after:

<!-- https://mvnrepository.com/artifact/com.google.cloud/google-cloud-vertexai -->
<dependency>
    <groupId>com.google.cloud</groupId>
    <artifactId>google-cloud-vertexai</artifactId>
    <version>1.5.0</version>
</dependency>

And, of course, it is now working! I admit I have been pretty slow 
at getting a good handle of the dependency tricks-- and I have
 wasted lots of time in the past trying to resolve similar issue.
 I'm glad I landed here where I get real help. P.S. I was on the 
road all day although I had seen your last comment. I couldn't
 wait to get back [home] and try it, and - it took me less 
than 15 minutes :) You've been of great help!
caesarsiza commented 2 weeks ago

Now I am advancing to the other models. However, I'm not sure whether this my 'java issue'. When I try running 'ExtractData.java' [https://github.com/glaforge/gemini-workshop-for-java-developers/blob/main/app/src/main/java/gemini/workshop/ExtractData.java], 'record' and 'person' not found.

cannot find symbol [ERROR] symbol: class record [ERROR] location: ExtractData... ... [ERROR] cannot find symbol [ERROR] symbol: class Person

glaforge commented 2 weeks ago

Which version of Java do you use? I think record was introduced in Java 16 or so. So be sure to use a recent version of Java.

caesarsiza commented 2 weeks ago

I will look into that, though I see what I currently have is 17....

java -version openjdk version "17.0.11" 2024-04-16 LTS OpenJDK Runtime Environment Corretto-17.0.11.9.1 (build 17.0.11+9-LTS)

OpenJDK 64-Bit Server VM Corretto-17.0.11.9.1 (build 17.0.11+9-LTS, mixed mode, sharing)

And, I believe that an upgrade of sorts will also resolve the other current issue that I am experiencing: "java text blocks are not supported in -source 8 (use -source 15 or higher to enable text blocks)" I had to change to the traditional multi-line work-around- but of course, I am yet to get it all to work.

glaforge commented 2 weeks ago

Try with Java 21. The code you're referencing in my Gemini / LangChain4j workshop is compiled and runs with Java 21.