wechatpay-apiv3 / wechatpay-java

微信支付 APIv3 的官方 Java Library
Apache License 2.0
870 stars 195 forks source link

Could not initialize class com.wechat.pay.java.core.http.DefaultHttpClientBuilder 错误 #204

Closed AlanTang2416 closed 1 year ago

AlanTang2416 commented 1 year ago

错误描述

服务器在添加商家转账到零钱的这个功能,代码是使用RSAAutoCertificateConfig构造config,构造的时候报错: Could not initialize class com.wechat.pay.java.core.http.DefaultHttpClientBuilder

重现bug的步骤

1、maven依赖

com.github.wechatpay-apiv3 wechatpay-java 0.2.10

2、代码构建config

预期行为

正常实现商家转账到零钱

导致错误的代码片段

Config config = new RSAAutoCertificateConfig.Builder()
                    .merchantId(wXpayConfig.getMerchantId())
                    .privateKey(privateKey)
                    .merchantSerialNumber(wXpayConfig.getMerchantSerialNumber())
                    .apiV3Key(wXpayConfig.getApiV3Key())
                    .build();

操作系统

乌班图

Java 版本

Java 1.8

wechatpay-java 版本

v0.2.10

其他信息

构建config时,设置的商户api证书、商户证书序列号、商户号、v3密钥都没有问题,这个已经跟在线技术客服确认过。

xy-peng commented 1 year ago

详细的错误日志贴一贴?

AlanTang2416 commented 1 year ago

详细的错误日志贴一贴?

2023-07-20 10:50:13.460 [http-nio-8480-exec-81] ERROR - c.w.n.w.b.r.BaseRestResource :271 -tufjnb46rfcbkiutrf call api x/transferBatch failed cause: Could not initialize class com.wechat.pay.java.core.http.DefaultHttpClientBuilder java.lang.RuntimeException: Exception when invoking - public com.western.nuggets.code.base.rest.Response com.western.nuggets.web.rest.wyx.XServiceApi.transferBatch(com.western.nuggets.service.xservice.beans.CancelOrderRequest) at com.western.nuggets.web.base.rest.BaseRestResource.invokeMappedMethod(BaseRestResource.java:563) at com.western.nuggets.web.base.rest.BaseRestResource.handleMethodExecution(BaseRestResource.java:260) at com.western.nuggets.web.base.rest.BaseRestResource.respond(BaseRestResource.java:224) at org.apache.wicket.request.handler.resource.ResourceRequestHandler.respond(ResourceRequestHandler.java:105) at org.apache.wicket.request.handler.resource.ResourceReferenceRequestHandler.respond(ResourceReferenceRequestHandler.java:108) at org.apache.wicket.request.cycle.RequestCycle$HandlerExecutor.respond(RequestCycle.java:895) at org.apache.wicket.request.RequestHandlerStack.execute(RequestHandlerStack.java:64) at org.apache.wicket.request.cycle.RequestCycle.execute(RequestCycle.java:265) at org.apache.wicket.request.cycle.RequestCycle.processRequest(RequestCycle.java:222) at org.apache.wicket.request.cycle.RequestCycle.processRequestAndDetach(RequestCycle.java:293) at org.apache.wicket.protocol.http.WicketFilter.processRequestCycle(WicketFilter.java:261) at org.apache.wicket.protocol.http.WicketFilter.processRequest(WicketFilter.java:203) at org.apache.wicket.protocol.http.WicketFilter.doFilter(WicketFilter.java:284) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) at org.apache.catalina.valves.AbstractAccessLogValve.invoke(AbstractAccessLogValve.java:678) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:367) at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:860) at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1598) at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) at java.lang.Thread.run(Thread.java:748) Caused by: java.lang.reflect.InvocationTargetException: null at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at com.western.nuggets.web.base.rest.BaseRestResource.invokeMappedMethod(BaseRestResource.java:560) ... 31 common frames omitted Caused by: java.lang.NoClassDefFoundError: Could not initialize class com.wechat.pay.java.core.http.DefaultHttpClientBuilder at com.wechat.pay.java.core.certificate.RSAAutoCertificateProvider$Builder.build(RSAAutoCertificateProvider.java:121) at com.wechat.pay.java.core.RSAAutoCertificateConfig$Builder.build(RSAAutoCertificateConfig.java:117) at com.western.nuggets.service.thirdparty.wxpayv3.WXPaymentCommon.transferBatch(WXPaymentCommon.java:98) at com.western.nuggets.service.xservice.XServiceApiService.transferBatch(XServiceApiService.java:290) at com.western.nuggets.service.xservice.Wicket_Proxy_XServiceApiService$$FastClassByCGLIB$$5f245056.invoke() at net.sf.cglib.proxy.MethodProxy.invoke(MethodProxy.java:204) at org.apache.wicket.proxy.LazyInitProxyFactory$AbstractCGLibInterceptor.intercept(LazyInitProxyFactory.java:351) at com.western.nuggets.service.xservice.Wicket_Proxy_XServiceApiService$$EnhancerByCGLIB$$dd55694a.transferBatch() at com.western.nuggets.web.rest.wyx.XServiceApi.transferBatch(XServiceApi.java:110) ... 36 common frames omitted

xy-peng commented 1 year ago

NoClassDefFoundError 是运行时不能找到合适的类。怀疑是你的工程依赖了之前的版本?

用 maven 的 dependency:tree 命令输出依赖列表看看是否实际依赖的是之前的版本?

AlanTang2416 commented 1 year ago

NoClassDefFoundError 是运行时不能找到合适的类。怀疑是你的工程依赖了之前的版本?

用 maven 的 dependency:tree 命令输出依赖列表看看是否实际依赖的是之前的版本?

Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-10/doxia-sink-api-1.0-alpha-10.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-10/doxia-sink-api-1.0-alpha-10.pom (1.3 kB at 881 B/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia/1.0-alpha-10/doxia-1.0-alpha-10.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia/1.0-alpha-10/doxia-1.0-alpha-10.pom (9.2 kB at 19 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/reporting/maven-reporting-impl/2.0.5/maven-reporting-impl-2.0.5.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/reporting/maven-reporting-impl/2.0.5/maven-reporting-impl-2.0.5.pom (4.2 kB at 8.9 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.pom (2.4 kB at 5.1 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/1.5.7/plexus-utils-1.5.7.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/1.5.7/plexus-utils-1.5.7.pom (8.1 kB at 16 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.pom (4.4 kB at 9.3 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-sitetools/1.0/doxia-sitetools-1.0.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-sitetools/1.0/doxia-sitetools-1.0.pom (9.6 kB at 20 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.pom (3.2 kB at 6.5 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.pom (2.3 kB at 4.7 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-modules/1.0/doxia-modules-1.0.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-modules/1.0/doxia-modules-1.0.pom (2.4 kB at 5.0 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.pom (2.7 kB at 5.3 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.pom (2.2 kB at 4.7 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.pom (1.6 kB at 3.4 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/shared/maven-doxia-tools/1.0.2/maven-doxia-tools-1.0.2.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/shared/maven-doxia-tools/1.0.2/maven-doxia-tools-1.0.2.pom (5.9 kB at 12 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/codehaus/plexus/plexus-archiver/2.3/plexus-archiver-2.3.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/codehaus/plexus/plexus-archiver/2.3/plexus-archiver-2.3.pom (3.4 kB at 6.8 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.pom (2.2 kB at 4.6 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/3.0.9/plexus-utils-3.0.9.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/3.0.9/plexus-utils-3.0.9.pom (3.1 kB at 6.6 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.pom (3.9 kB at 8.0 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.pom (4.1 kB at 6.7 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/maven-artifact/2.0.2/maven-artifact-2.0.2.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/maven-artifact/2.0.2/maven-artifact-2.0.2.pom (765 B at 1.6 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/maven/2.0.2/maven-2.0.2.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/maven/2.0.2/maven-2.0.2.pom (13 kB at 28 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.pom (1.4 kB at 2.9 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/maven-repository-metadata/2.0.2/maven-repository-metadata-2.0.2.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/maven-repository-metadata/2.0.2/maven-repository-metadata-2.0.2.pom (1.3 kB at 2.8 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.pom (588 B at 1.2 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6.pom (6.4 kB at 13 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/shared/maven-dependency-analyzer/1.4/maven-dependency-analyzer-1.4.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/shared/maven-dependency-analyzer/1.4/maven-dependency-analyzer-1.4.pom (5.2 kB at 11 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/maven-project/2.0.5/maven-project-2.0.5.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/maven-project/2.0.5/maven-project-2.0.5.pom (1.8 kB at 3.9 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/maven-settings/2.0.5/maven-settings-2.0.5.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/maven-settings/2.0.5/maven-settings-2.0.5.pom (1.7 kB at 3.4 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/maven-profile/2.0.5/maven-profile-2.0.5.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/maven-profile/2.0.5/maven-profile-2.0.5.pom (1.7 kB at 3.3 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/maven-artifact-manager/2.0.5/maven-artifact-manager-2.0.5.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/maven-artifact-manager/2.0.5/maven-artifact-manager-2.0.5.pom (1.8 kB at 3.9 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/maven-repository-metadata/2.0.5/maven-repository-metadata-2.0.5.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/maven-repository-metadata/2.0.5/maven-repository-metadata-2.0.5.pom (1.5 kB at 2.4 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.pom (6.8 kB at 14 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/maven-project/2.2.0/maven-project-2.2.0.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/maven-project/2.2.0/maven-project-2.2.0.pom (2.8 kB at 5.8 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/maven/2.2.0/maven-2.2.0.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/maven/2.2.0/maven-2.2.0.pom (22 kB at 48 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/maven-settings/2.2.0/maven-settings-2.2.0.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/maven-settings/2.2.0/maven-settings-2.2.0.pom (2.2 kB at 4.7 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/maven-model/2.2.0/maven-model-2.2.0.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/maven-model/2.2.0/maven-model-2.2.0.pom (3.2 kB at 6.6 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/maven-profile/2.2.0/maven-profile-2.2.0.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/maven-profile/2.2.0/maven-profile-2.2.0.pom (2.2 kB at 4.6 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/maven-artifact-manager/2.2.0/maven-artifact-manager-2.2.0.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/maven-artifact-manager/2.2.0/maven-artifact-manager-2.2.0.pom (3.1 kB at 6.3 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/maven-repository-metadata/2.2.0/maven-repository-metadata-2.2.0.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/maven-repository-metadata/2.2.0/maven-repository-metadata-2.2.0.pom (1.9 kB at 2.7 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/maven-artifact/2.2.0/maven-artifact-2.2.0.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/maven-artifact/2.2.0/maven-artifact-2.2.0.pom (1.6 kB at 3.3 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/maven-plugin-registry/2.2.0/maven-plugin-registry-2.2.0.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/maven-plugin-registry/2.2.0/maven-plugin-registry-2.2.0.pom (1.9 kB at 3.9 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.pom (3.8 kB at 7.8 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/shared/maven-invoker/2.0.11/maven-invoker-2.0.11.pom Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/shared/maven-invoker/2.0.11/maven-invoker-2.0.11.pom (5.1 kB at 10 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/reporting/maven-reporting-impl/2.0.5/maven-reporting-impl-2.0.5.jar Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.jar Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/shared/maven-doxia-tools/1.0.2/maven-doxia-tools-1.0.2.jar Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.jar Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.jar Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/reporting/maven-reporting-impl/2.0.5/maven-reporting-impl-2.0.5.jar (21 kB at 42 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.jar Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.jar (10 kB at 10 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.jar Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/shared/maven-doxia-tools/1.0.2/maven-doxia-tools-1.0.2.jar (41 kB at 40 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.jar Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.jar (49 kB at 47 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.jar Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.jar (55 kB at 45 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.jar Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.jar (47 kB at 36 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/codehaus/plexus/plexus-archiver/2.3/plexus-archiver-2.3.jar Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.jar (47 kB at 33 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/3.0.9/plexus-utils-3.0.9.jar Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.jar (19 kB at 12 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.jar Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.jar (28 kB at 18 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.jar Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.jar (22 kB at 13 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.jar Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.jar (38 kB at 18 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.jar Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.jar (39 kB at 19 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/shared/maven-dependency-analyzer/1.4/maven-dependency-analyzer-1.4.jar Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/codehaus/plexus/plexus-archiver/2.3/plexus-archiver-2.3.jar (186 kB at 90 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.jar Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/3.0.9/plexus-utils-3.0.9.jar (232 kB at 109 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.jar Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.jar (43 kB at 19 kB/s) Downloading from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/shared/maven-invoker/2.0.11/maven-invoker-2.0.11.jar Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/shared/maven-dependency-analyzer/1.4/maven-dependency-analyzer-1.4.jar (27 kB at 11 kB/s) Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.jar (60 kB at 23 kB/s) Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.jar (58 kB at 22 kB/s) Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.jar (32 kB at 12 kB/s) Downloaded from nexus-aliyun: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/shared/maven-invoker/2.0.11/maven-invoker-2.0.11.jar (29 kB at 11 kB/s) [INFO] com.wuyexin:wyx:pom:1.0.0.1-SNAPSHOT [INFO] +- ch.qos.logback:logback-classic:jar:1.1.7:compile [INFO] | +- ch.qos.logback:logback-core:jar:1.1.7:compile [INFO] | - org.slf4j:slf4j-api:jar:1.7.20:compile [INFO] +- junit:junit:jar:4.11:compile [INFO] | - org.hamcrest:hamcrest-core:jar:1.3:compile [INFO] +- com.google.guava:guava:jar:18.0:compile [INFO] +- org.apache.commons:commons-lang3:jar:3.3.2:compile [INFO] +- org.apache.commons:commons-jexl:jar:2.1.1:compile [INFO] | - commons-logging:commons-logging:jar:1.1.1:compile [INFO] +- commons-beanutils:commons-beanutils:jar:1.9.2:compile [INFO] | - commons-collections:commons-collections:jar:3.2.1:compile [INFO] +- commons-codec:commons-codec:jar:1.10:compile [INFO] +- joda-time:joda-time:jar:2.7:compile [INFO] +- org.apache.commons:commons-email:jar:1.3.3:compile [INFO] | +- javax.mail:mail:jar:1.4.5:compile [INFO] | - javax.activation:activation:jar:1.1.1:compile [INFO] +- org.apache.commons:commons-csv:jar:1.1:compile [INFO] +- com.alipay.sdk:alipay-sdk-java:jar:3.7.26.ALL:compile [INFO] +- com.sunline:sign:jar:1.0:compile [INFO] - com.bankofchangsha:open-api-sdk-java:jar:1.0:compile [INFO] [INFO] -----------------------< com.wuyexin:code-base >------------------------ [INFO] Building code-base 1.0.0.1-SNAPSHOT [2/12] [INFO] --------------------------------[ jar ]--------------------------------- [INFO] [INFO] --- maven-dependency-plugin:2.8:tree (default-cli) @ code-base --- [INFO] com.wuyexin:code-base:jar:1.0.0.1-SNAPSHOT [INFO] +- org.apache.wicket:wicket-core:jar:7.10.0:compile [INFO] | +- org.apache.commons:commons-collections4:jar:4.1:compile [INFO] | +- org.apache.wicket:wicket-request:jar:7.10.0:compile [INFO] | +- org.apache.wicket:wicket-util:jar:7.10.0:compile [INFO] | | +- commons-fileupload:commons-fileupload:jar:1.3.2:compile [INFO] | | - commons-io:commons-io:jar:2.5:compile [INFO] | - org.slf4j:slf4j-api:jar:1.7.21:compile [INFO] +- org.eclipse.jetty:jetty-server:jar:9.4.9.v20180320:provided [INFO] | +- javax.servlet:javax.servlet-api:jar:3.1.0:provided [INFO] | +- org.eclipse.jetty:jetty-http:jar:9.4.9.v20180320:provided [INFO] | | - org.eclipse.jetty:jetty-util:jar:9.4.9.v20180320:provided [INFO] | - org.eclipse.jetty:jetty-io:jar:9.4.9.v20180320:provided [INFO] +- org.freemarker:freemarker:jar:2.3.20:compile [INFO] +- net.sf.jxls:jxls-core:jar:1.0.5:compile [INFO] | +- commons-logging:commons-logging:jar:1.1.1:compile [INFO] | +- commons-collections:commons-collections:jar:3.2.1:compile [INFO] | +- commons-digester:commons-digester:jar:2.0:compile [INFO] | +- org.apache.poi:poi:jar:3.9:compile [INFO] | - org.apache.poi:poi-ooxml:jar:3.9:compile [INFO] | +- org.apache.poi:poi-ooxml-schemas:jar:3.9:compile [INFO] | | - org.apache.xmlbeans:xmlbeans:jar:2.3.0:compile [INFO] | | - stax:stax-api:jar:1.0.1:compile [INFO] | - dom4j:dom4j:jar:1.6.1:compile [INFO] | - xml-apis:xml-apis:jar:1.0.b2:compile [INFO] +- net.sf.jxls:jxls-reader:jar:1.0.5:compile [INFO] +- org.mybatis:mybatis:jar:3.2.7:compile [INFO] +- org.mybatis:mybatis-guice:jar:3.6:compile [INFO] +- org.apache.wicket:wicket-guice:jar:7.10.0:compile [INFO] | +- com.google.inject:guice:jar:4.0:compile [INFO] | | +- javax.inject:javax.inject:jar:1:compile [INFO] | | - aopalliance:aopalliance:jar:1.0:compile [INFO] | - org.apache.wicket:wicket-ioc:jar:7.10.0:compile [INFO] | +- cglib:cglib:jar:3.1:compile [INFO] | - org.ow2.asm:asm-util:jar:5.0.3:compile [INFO] | - org.ow2.asm:asm-tree:jar:5.0.3:compile [INFO] | - org.ow2.asm:asm:jar:5.0.3:compile [INFO] +- org.hibernate:hibernate-validator:jar:4.3.1.Final:compile [INFO] | +- javax.validation:validation-api:jar:1.0.0.GA:compile [INFO] | - org.jboss.logging:jboss-logging:jar:3.1.0.CR2:compile [INFO] +- mysql:mysql-connector-java:jar:5.1.30:compile [INFO] +- org.wicketstuff:wicketstuff-restannotations:jar:7.10.0:compile [INFO] | - org.apache.wicket:wicket-auth-roles:jar:7.10.0:compile [INFO] +- org.wicketstuff:wicketstuff-restannotations-json:jar:7.10.0:compile [INFO] | - com.google.code.gson:gson:jar:2.4:compile [INFO] +- org.apache.httpcomponents:httpclient:jar:4.5.1:compile [INFO] | - org.apache.httpcomponents:httpcore:jar:4.4.3:compile [INFO] +- org.apache.logging.log4j:log4j-api:jar:2.7:compile [INFO] +- org.apache.logging.log4j:log4j-core:jar:2.7:compile [INFO] +- com.itextpdf:itextpdf:jar:5.5.10:compile [INFO] +- com.itextpdf.tool:xmlworker:jar:5.5.10:compile [INFO] +- org.codehaus.groovy:groovy-all:jar:2.4.12:compile [INFO] +- net.sourceforge.javacsv:javacsv:jar:2.0:compile [INFO] +- ch.qos.logback:logback-classic:jar:1.1.7:compile [INFO] | - ch.qos.logback:logback-core:jar:1.1.7:compile [INFO] +- junit:junit:jar:4.11:compile [INFO] | - org.hamcrest:hamcrest-core:jar:1.3:compile [INFO] +- com.google.guava:guava:jar:18.0:compile [INFO] +- org.apache.commons:commons-lang3:jar:3.3.2:compile [INFO] +- org.apache.commons:commons-jexl:jar:2.1.1:compile [INFO] +- commons-beanutils:commons-beanutils:jar:1.9.2:compile [INFO] +- commons-codec:commons-codec:jar:1.10:compile [INFO] +- joda-time:joda-time:jar:2.7:compile [INFO] +- org.apache.commons:commons-email:jar:1.3.3:compile [INFO] | +- javax.mail:mail:jar:1.4.5:compile [INFO] | - javax.activation:activation:jar:1.1.1:compile [INFO] +- org.apache.commons:commons-csv:jar:1.1:compile [INFO] +- com.alipay.sdk:alipay-sdk-java:jar:3.7.26.ALL:compile [INFO] +- com.sunline:sign:jar:1.0:compile [INFO] - com.bankofchangsha:open-api-sdk-java:jar:1.0:compile [INFO] [INFO] ---------------------< com.wuyexin:code-generator >--------------------- [INFO] Building code-generator 1.0.0.1-SNAPSHOT [3/12] [INFO] ----------------------------[ maven-plugin ]---------------------------- [INFO] [INFO] --- maven-dependency-plugin:2.8:tree (default-cli) @ code-generator --- [INFO] com.wuyexin:code-generator:maven-plugin:1.0.0.1-SNAPSHOT [INFO] +- com.wuyexin:code-base:jar:1.0.0.1-SNAPSHOT:compile [INFO] | +- org.apache.wicket:wicket-core:jar:7.10.0:compile [INFO] | | +- org.apache.commons:commons-collections4:jar:4.1:compile [INFO] | | +- org.apache.wicket:wicket-request:jar:7.10.0:compile [INFO] | | - org.apache.wicket:wicket-util:jar:7.10.0:compile [INFO] | | +- commons-fileupload:commons-fileupload:jar:1.3.2:compile [INFO] | | - commons-io:commons-io:jar:2.5:compile [INFO] | +- org.freemarker:freemarker:jar:2.3.20:compile [INFO] | +- net.sf.jxls:jxls-core:jar:1.0.5:compile [INFO] | | +- commons-digester:commons-digester:jar:2.0:compile [INFO] | | +- org.apache.poi:poi:jar:3.9:compile [INFO] | | - org.apache.poi:poi-ooxml:jar:3.9:compile [INFO] | | +- org.apache.poi:poi-ooxml-schemas:jar:3.9:compile [INFO] | | | - org.apache.xmlbeans:xmlbeans:jar:2.3.0:compile [INFO] | | | - stax:stax-api:jar:1.0.1:compile [INFO] | | - dom4j:dom4j:jar:1.6.1:compile [INFO] | | - xml-apis:xml-apis:jar:1.0.b2:compile [INFO] | +- net.sf.jxls:jxls-reader:jar:1.0.5:compile [INFO] | +- org.mybatis:mybatis:jar:3.2.7:compile [INFO] | +- org.mybatis:mybatis-guice:jar:3.6:compile [INFO] | +- org.apache.wicket:wicket-guice:jar:7.10.0:compile [INFO] | | +- com.google.inject:guice:jar:4.0:compile [INFO] | | | +- javax.inject:javax.inject:jar:1:compile [INFO] | | | - aopalliance:aopalliance:jar:1.0:compile [INFO] | | - org.apache.wicket:wicket-ioc:jar:7.10.0:compile [INFO] | | +- cglib:cglib:jar:3.1:compile [INFO] | | - org.ow2.asm:asm-util:jar:5.0.3:compile [INFO] | | - org.ow2.asm:asm-tree:jar:5.0.3:compile [INFO] | | - org.ow2.asm:asm:jar:5.0.3:compile [INFO] | +- org.hibernate:hibernate-validator:jar:4.3.1.Final:compile [INFO] | | +- javax.validation:validation-api:jar:1.0.0.GA:compile [INFO] | | - org.jboss.logging:jboss-logging:jar:3.1.0.CR2:compile [INFO] | +- mysql:mysql-connector-java:jar:5.1.30:compile [INFO] | +- org.wicketstuff:wicketstuff-restannotations:jar:7.10.0:compile [INFO] | | - org.apache.wicket:wicket-auth-roles:jar:7.10.0:compile [INFO] | +- org.wicketstuff:wicketstuff-restannotations-json:jar:7.10.0:compile [INFO] | | - com.google.code.gson:gson:jar:2.4:compile [INFO] | +- org.apache.httpcomponents:httpclient:jar:4.5.1:compile [INFO] | | - org.apache.httpcomponents:httpcore:jar:4.4.3:compile [INFO] | +- org.apache.logging.log4j:log4j-api:jar:2.7:compile [INFO] | +- org.apache.logging.log4j:log4j-core:jar:2.7:compile [INFO] | +- com.itextpdf:itextpdf:jar:5.5.10:compile [INFO] | +- com.itextpdf.tool:xmlworker:jar:5.5.10:compile [INFO] | +- org.codehaus.groovy:groovy-all:jar:2.4.12:compile [INFO] | - net.sourceforge.javacsv:javacsv:jar:2.0:compile [INFO] +- org.mybatis.generator:mybatis-generator-core:jar:1.3.2:compile [INFO] +- org.apache.maven:maven-plugin-api:jar:3.2.3:compile [INFO] | +- org.apache.maven:maven-model:jar:3.2.3:compile [INFO] | | - org.codehaus.plexus:plexus-utils:jar:3.0.17:compile [INFO] | +- org.apache.maven:maven-artifact:jar:3.2.3:compile [INFO] | - org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.0.0.M5:compile [INFO] | +- javax.enterprise:cdi-api:jar:1.0:compile [INFO] | | - javax.annotation:jsr250-api:jar:1.0:compile [INFO] | +- org.sonatype.sisu:sisu-guice:jar:no_aop:3.1.0:compile [INFO] | +- org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.0.0.M5:compile [INFO] | +- org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile [INFO] | - org.codehaus.plexus:plexus-classworlds:jar:2.4:compile [INFO] +- org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.3:provided [INFO] +- org.codehaus.mojo:native2ascii-maven-plugin:jar:1.0-beta-1:compile [INFO] | - org.apache.maven:maven-project:jar:2.0:compile [INFO] | +- org.apache.maven:maven-profile:jar:2.0:compile [INFO] | +- org.apache.maven:maven-artifact-manager:jar:2.0:compile [INFO] | | +- org.apache.maven:maven-repository-metadata:jar:2.0:compile [INFO] | | - org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-5:compile [INFO] | - org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8:compile [INFO] | - classworlds:classworlds:jar:1.1-alpha-2:compile [INFO] +- ch.qos.logback:logback-classic:jar:1.1.7:compile [INFO] | +- ch.qos.logback:logback-core:jar:1.1.7:compile [INFO] | - org.slf4j:slf4j-api:jar:1.7.20:compile [INFO] +- junit:junit:jar:4.11:compile [INFO] | - org.hamcrest:hamcrest-core:jar:1.3:compile [INFO] +- com.google.guava:guava:jar:18.0:compile [INFO] +- org.apache.commons:commons-lang3:jar:3.3.2:compile [INFO] +- org.apache.commons:commons-jexl:jar:2.1.1:compile [INFO] | - commons-logging:commons-logging:jar:1.1.1:compile [INFO] +- commons-beanutils:commons-beanutils:jar:1.9.2:compile [INFO] | - commons-collections:commons-collections:jar:3.2.1:compile [INFO] +- commons-codec:commons-codec:jar:1.10:compile [INFO] +- joda-time:joda-time:jar:2.7:compile [INFO] +- org.apache.commons:commons-email:jar:1.3.3:compile [INFO] | +- javax.mail:mail:jar:1.4.5:compile [INFO] | - javax.activation:activation:jar:1.1.1:compile [INFO] +- org.apache.commons:commons-csv:jar:1.1:compile [INFO] +- com.alipay.sdk:alipay-sdk-java:jar:3.7.26.ALL:compile [INFO] +- com.sunline:sign:jar:1.0:compile [INFO] - com.bankofchangsha:open-api-sdk-java:jar:1.0:compile [INFO] [INFO] ---------------------< com.wuyexin:common-service >--------------------- [INFO] Building common-service 1.0.0.1-SNAPSHOT [4/12] [INFO] --------------------------------[ jar ]--------------------------------- [INFO] [INFO] --- maven-dependency-plugin:2.8:tree (default-cli) @ common-service --- [INFO] com.wuyexin:common-service:jar:1.0.0.1-SNAPSHOT [INFO] +- com.wuyexin:code-base:jar:1.0.0.1-SNAPSHOT:compile [INFO] | +- org.apache.wicket:wicket-core:jar:7.10.0:compile [INFO] | | +- org.apache.commons:commons-collections4:jar:4.1:compile [INFO] | | +- org.apache.wicket:wicket-request:jar:7.10.0:compile [INFO] | | - org.apache.wicket:wicket-util:jar:7.10.0:compile [INFO] | | +- commons-fileupload:commons-fileupload:jar:1.3.2:compile [INFO] | | - commons-io:commons-io:jar:2.5:compile [INFO] | +- org.freemarker:freemarker:jar:2.3.20:compile [INFO] | +- net.sf.jxls:jxls-core:jar:1.0.5:compile [INFO] | | +- commons-digester:commons-digester:jar:2.0:compile [INFO] | | +- org.apache.poi:poi:jar:3.9:compile [INFO] | | - org.apache.poi:poi-ooxml:jar:3.9:compile [INFO] | | +- org.apache.poi:poi-ooxml-schemas:jar:3.9:compile [INFO] | | | - org.apache.xmlbeans:xmlbeans:jar:2.3.0:compile [INFO] | | | - stax:stax-api:jar:1.0.1:compile [INFO] | | - dom4j:dom4j:jar:1.6.1:compile [INFO] | | - xml-apis:xml-apis:jar:1.0.b2:compile [INFO] | +- net.sf.jxls:jxls-reader:jar:1.0.5:compile [INFO] | +- org.mybatis:mybatis:jar:3.2.7:compile [INFO] | +- org.mybatis:mybatis-guice:jar:3.6:compile [INFO] | +- org.apache.wicket:wicket-guice:jar:7.10.0:compile [INFO] | | +- com.google.inject:guice:jar:4.0:compile [INFO] | | | - javax.inject:javax.inject:jar:1:compile [INFO] | | - org.apache.wicket:wicket-ioc:jar:7.10.0:compile [INFO] | | +- cglib:cglib:jar:3.1:compile [INFO] | | - org.ow2.asm:asm-util:jar:5.0.3:compile [INFO] | | - org.ow2.asm:asm-tree:jar:5.0.3:compile [INFO] | | - org.ow2.asm:asm:jar:5.0.3:compile [INFO] | +- org.hibernate:hibernate-validator:jar:4.3.1.Final:compile [INFO] | | +- javax.validation:validation-api:jar:1.0.0.GA:compile [INFO] | | - org.jboss.logging:jboss-logging:jar:3.1.0.CR2:compile [INFO] | +- mysql:mysql-connector-java:jar:5.1.30:compile [INFO] | +- org.wicketstuff:wicketstuff-restannotations:jar:7.10.0:compile [INFO] | | - org.apache.wicket:wicket-auth-roles:jar:7.10.0:compile [INFO] | +- org.wicketstuff:wicketstuff-restannotations-json:jar:7.10.0:compile [INFO] | | - com.google.code.gson:gson:jar:2.4:compile [INFO] | +- org.apache.httpcomponents:httpclient:jar:4.5.1:compile [INFO] | | - org.apache.httpcomponents:httpcore:jar:4.4.3:compile [INFO] | +- org.apache.logging.log4j:log4j-api:jar:2.7:compile [INFO] | +- org.apache.logging.log4j:log4j-core:jar:2.7:compile [INFO] | +- com.itextpdf:itextpdf:jar:5.5.10:compile [INFO] | +- com.itextpdf.tool:xmlworker:jar:5.5.10:compile [INFO] | +- org.codehaus.groovy:groovy-all:jar:2.4.12:compile [INFO] | - net.sourceforge.javacsv:javacsv:jar:2.0:compile [INFO] +- org.elasticsearch.client:transport:jar:5.1.1:compile [INFO] | +- org.elasticsearch:elasticsearch:jar:5.1.1:compile [INFO] | | +- org.apache.lucene:lucene-core:jar:6.3.0:compile [INFO] | | +- org.apache.lucene:lucene-analyzers-common:jar:6.3.0:compile [INFO] | | +- org.apache.lucene:lucene-backward-codecs:jar:6.3.0:compile [INFO] | | +- org.apache.lucene:lucene-grouping:jar:6.3.0:compile [INFO] | | +- org.apache.lucene:lucene-highlighter:jar:6.3.0:compile [INFO] | | +- org.apache.lucene:lucene-join:jar:6.3.0:compile [INFO] | | +- org.apache.lucene:lucene-memory:jar:6.3.0:compile [INFO] | | +- org.apache.lucene:lucene-misc:jar:6.3.0:compile [INFO] | | +- org.apache.lucene:lucene-queries:jar:6.3.0:compile [INFO] | | +- org.apache.lucene:lucene-queryparser:jar:6.3.0:compile [INFO] | | +- org.apache.lucene:lucene-sandbox:jar:6.3.0:compile [INFO] | | +- org.apache.lucene:lucene-spatial:jar:6.3.0:compile [INFO] | | +- org.apache.lucene:lucene-spatial-extras:jar:6.3.0:compile [INFO] | | +- org.apache.lucene:lucene-spatial3d:jar:6.3.0:compile [INFO] | | +- org.apache.lucene:lucene-suggest:jar:6.3.0:compile [INFO] | | +- org.elasticsearch:securesm:jar:1.1:compile [INFO] | | +- net.sf.jopt-simple:jopt-simple:jar:5.0.2:compile [INFO] | | +- com.carrotsearch:hppc:jar:0.7.1:compile [INFO] | | +- org.yaml:snakeyaml:jar:1.15:compile [INFO] | | +- com.fasterxml.jackson.dataformat:jackson-dataformat-smile:jar:2.8.1:compile [INFO] | | +- com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:jar:2.8.1:compile [INFO] | | +- com.tdunning:t-digest:jar:3.0:compile [INFO] | | +- org.hdrhistogram:HdrHistogram:jar:2.1.6:compile [INFO] | | - net.java.dev.jna:jna:jar:4.2.2:compile [INFO] | +- org.elasticsearch.plugin:transport-netty3-client:jar:5.1.1:compile [INFO] | | - io.netty:netty:jar:3.10.6.Final:compile [INFO] | +- org.elasticsearch.plugin:transport-netty4-client:jar:5.1.1:compile [INFO] | | +- io.netty:netty-codec-http:jar:4.1.6.Final:compile [INFO] | | - io.netty:netty-resolver:jar:4.1.6.Final:compile [INFO] | +- org.elasticsearch.plugin:reindex-client:jar:5.1.1:compile [INFO] | | - org.elasticsearch.client:rest:jar:5.1.1:compile [INFO] | | +- org.apache.httpcomponents:httpasyncclient:jar:4.1.2:compile [INFO] | | - org.apache.httpcomponents:httpcore-nio:jar:4.4.5:compile [INFO] | +- org.elasticsearch.plugin:lang-mustache-client:jar:5.1.1:compile [INFO] | | - com.github.spullara.mustache.java:compiler:jar:0.9.3:compile [INFO] | - org.elasticsearch.plugin:percolator-client:jar:5.1.1:compile [INFO] +- redis.clients:jedis:jar:2.9.0:compile [INFO] | - org.apache.commons:commons-pool2:jar:2.4.2:compile [INFO] +- org.redisson:redisson:jar:3.3.2:compile [INFO] | +- io.netty:netty-common:jar:4.1.8.Final:compile [INFO] | +- io.netty:netty-codec:jar:4.1.8.Final:compile [INFO] | +- io.netty:netty-buffer:jar:4.1.8.Final:compile [INFO] | +- io.netty:netty-transport:jar:4.1.8.Final:compile [INFO] | +- io.netty:netty-handler:jar:4.1.8.Final:compile [INFO] | +- javax.cache:cache-api:jar:1.0.0:compile [INFO] | +- io.projectreactor:reactor-stream:jar:2.0.8.RELEASE:compile [INFO] | | - io.projectreactor:reactor-core:jar:2.0.8.RELEASE:compile [INFO] | | - org.reactivestreams:reactive-streams:jar:1.0.0:compile [INFO] | +- org.slf4j:slf4j-api:jar:1.7.21:compile [INFO] | +- com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:jar:2.8.7:compile [INFO] | +- com.fasterxml.jackson.core:jackson-core:jar:2.8.7:compile [INFO] | - com.fasterxml.jackson.core:jackson-databind:jar:2.8.7:compile [INFO] | - com.fasterxml.jackson.core:jackson-annotations:jar:2.8.0:compile [INFO] +- de.ruedigermoeller:fst:jar:2.50:compile [INFO] | +- org.javassist:javassist:jar:3.21.0-GA:compile [INFO] | +- org.objenesis:objenesis:jar:2.5.1:compile [INFO] | - com.cedarsoftware:java-util:jar:1.9.0:compile [INFO] | - com.cedarsoftware:json-io:jar:2.5.1:compile [INFO] +- aopalliance:aopalliance:jar:1.0:compile [INFO] +- io.jsonwebtoken:jjwt:jar:0.7.0:compile [INFO] +- ch.qos.logback:logback-classic:jar:1.1.7:compile [INFO] | - ch.qos.logback:logback-core:jar:1.1.7:compile [INFO] +- junit:junit:jar:4.11:compile [INFO] | - org.hamcrest:hamcrest-core:jar:1.3:compile [INFO] +- com.google.guava:guava:jar:18.0:compile [INFO] +- org.apache.commons:commons-lang3:jar:3.3.2:compile [INFO] +- org.apache.commons:commons-jexl:jar:2.1.1:compile [INFO] | - commons-logging:commons-logging:jar:1.1.1:compile [INFO] +- commons-beanutils:commons-beanutils:jar:1.9.2:compile [INFO] | - commons-collections:commons-collections:jar:3.2.1:compile [INFO] +- commons-codec:commons-codec:jar:1.10:compile [INFO] +- joda-time:joda-time:jar:2.7:compile [INFO] +- org.apache.commons:commons-email:jar:1.3.3:compile [INFO] | +- javax.mail:mail:jar:1.4.5:compile [INFO] | - javax.activation:activation:jar:1.1.1:compile [INFO] +- org.apache.commons:commons-csv:jar:1.1:compile [INFO] +- com.alipay.sdk:alipay-sdk-java:jar:3.7.26.ALL:compile [INFO] +- com.sunline:sign:jar:1.0:compile [INFO] - com.bankofchangsha:open-api-sdk-java:jar:1.0:compile [INFO] [INFO] --------------------< com.wuyexin:data-persistence >-------------------- [INFO] Building data-persistence 1.0.0.1-SNAPSHOT [5/12] [INFO] --------------------------------[ jar ]--------------------------------- [INFO] [INFO] --- maven-dependency-plugin:2.8:tree (default-cli) @ data-persistence --- [INFO] com.wuyexin:data-persistence:jar:1.0.0.1-SNAPSHOT [INFO] +- com.wuyexin:common-service:jar:1.0.0.1-SNAPSHOT:compile [INFO] | +- com.wuyexin:code-base:jar:1.0.0.1-SNAPSHOT:compile [INFO] | | +- org.apache.wicket:wicket-core:jar:7.10.0:compile [INFO] | | | +- org.apache.commons:commons-collections4:jar:4.1:compile [INFO] | | | +- org.apache.wicket:wicket-request:jar:7.10.0:compile [INFO] | | | - org.apache.wicket:wicket-util:jar:7.10.0:compile [INFO] | | | +- commons-fileupload:commons-fileupload:jar:1.3.2:compile [INFO] | | | - commons-io:commons-io:jar:2.5:compile [INFO] | | +- org.freemarker:freemarker:jar:2.3.20:compile [INFO] | | +- net.sf.jxls:jxls-core:jar:1.0.5:compile [INFO] | | | +- commons-digester:commons-digester:jar:2.0:compile [INFO] | | | +- org.apache.poi:poi:jar:3.9:compile [INFO] | | | - org.apache.poi:poi-ooxml:jar:3.9:compile [INFO] | | | +- org.apache.poi:poi-ooxml-schemas:jar:3.9:compile [INFO] | | | | - org.apache.xmlbeans:xmlbeans:jar:2.3.0:compile [INFO] | | | | - stax:stax-api:jar:1.0.1:compile [INFO] | | | - dom4j:dom4j:jar:1.6.1:compile [INFO] | | | - xml-apis:xml-apis:jar:1.0.b2:compile [INFO] | | +- net.sf.jxls:jxls-reader:jar:1.0.5:compile [INFO] | | +- org.mybatis:mybatis:jar:3.2.7:compile [INFO] | | +- org.mybatis:mybatis-guice:jar:3.6:compile [INFO] | | +- org.apache.wicket:wicket-guice:jar:7.10.0:compile [INFO] | | | +- com.google.inject:guice:jar:4.0:compile [INFO] | | | | - javax.inject:javax.inject:jar:1:compile [INFO] | | | - org.apache.wicket:wicket-ioc:jar:7.10.0:compile [INFO] | | | +- cglib:cglib:jar:3.1:compile [INFO] | | | - org.ow2.asm:asm-util:jar:5.0.3:compile [INFO] | | | - org.ow2.asm:asm-tree:jar:5.0.3:compile [INFO] | | | - org.ow2.asm:asm:jar:5.0.3:compile [INFO] | | +- org.hibernate:hibernate-validator:jar:4.3.1.Final:compile [INFO] | | | +- javax.validation:validation-api:jar:1.0.0.GA:compile [INFO] | | | - org.jboss.logging:jboss-logging:jar:3.1.0.CR2:compile [INFO] | | +- mysql:mysql-connector-java:jar:5.1.30:compile [INFO] | | +- org.wicketstuff:wicketstuff-restannotations:jar:7.10.0:compile [INFO] | | | - org.apache.wicket:wicket-auth-roles:jar:7.10.0:compile [INFO] | | +- org.wicketstuff:wicketstuff-restannotations-json:jar:7.10.0:compile [INFO] | | | - com.google.code.gson:gson:jar:2.4:compile [INFO] | | +- org.apache.httpcomponents:httpclient:jar:4.5.1:compile [INFO] | | | - org.apache.httpcomponents:httpcore:jar:4.4.3:compile [INFO] | | +- org.apache.logging.log4j:log4j-api:jar:2.7:compile [INFO] | | +- org.apache.logging.log4j:log4j-core:jar:2.7:compile [INFO] | | +- com.itextpdf:itextpdf:jar:5.5.10:compile [INFO] | | +- com.itextpdf.tool:xmlworker:jar:5.5.10:compile [INFO] | | +- org.codehaus.groovy:groovy-all:jar:2.4.12:compile [INFO] | | - net.sourceforge.javacsv:javacsv:jar:2.0:compile [INFO] | +- org.elasticsearch.client:transport:jar:5.1.1:compile [INFO] | | +- org.elasticsearch:elasticsearch:jar:5.1.1:compile [INFO] | | | +- org.apache.lucene:lucene-core:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-analyzers-common:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-backward-codecs:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-grouping:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-highlighter:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-join:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-memory:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-misc:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-queries:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-queryparser:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-sandbox:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-spatial:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-spatial-extras:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-spatial3d:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-suggest:jar:6.3.0:compile [INFO] | | | +- org.elasticsearch:securesm:jar:1.1:compile [INFO] | | | +- net.sf.jopt-simple:jopt-simple:jar:5.0.2:compile [INFO] | | | +- com.carrotsearch:hppc:jar:0.7.1:compile [INFO] | | | +- org.yaml:snakeyaml:jar:1.15:compile [INFO] | | | +- com.fasterxml.jackson.dataformat:jackson-dataformat-smile:jar:2.8.1:compile [INFO] | | | +- com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:jar:2.8.1:compile [INFO] | | | +- com.tdunning:t-digest:jar:3.0:compile [INFO] | | | +- org.hdrhistogram:HdrHistogram:jar:2.1.6:compile [INFO] | | | - net.java.dev.jna:jna:jar:4.2.2:compile [INFO] | | +- org.elasticsearch.plugin:transport-netty3-client:jar:5.1.1:compile [INFO] | | | - io.netty:netty:jar:3.10.6.Final:compile [INFO] | | +- org.elasticsearch.plugin:transport-netty4-client:jar:5.1.1:compile [INFO] | | | +- io.netty:netty-codec-http:jar:4.1.6.Final:compile [INFO] | | | - io.netty:netty-resolver:jar:4.1.6.Final:compile [INFO] | | +- org.elasticsearch.plugin:reindex-client:jar:5.1.1:compile [INFO] | | | - org.elasticsearch.client:rest:jar:5.1.1:compile [INFO] | | | +- org.apache.httpcomponents:httpasyncclient:jar:4.1.2:compile [INFO] | | | - org.apache.httpcomponents:httpcore-nio:jar:4.4.5:compile [INFO] | | +- org.elasticsearch.plugin:lang-mustache-client:jar:5.1.1:compile [INFO] | | | - com.github.spullara.mustache.java:compiler:jar:0.9.3:compile [INFO] | | - org.elasticsearch.plugin:percolator-client:jar:5.1.1:compile [INFO] | +- redis.clients:jedis:jar:2.9.0:compile [INFO] | | - org.apache.commons:commons-pool2:jar:2.4.2:compile [INFO] | +- org.redisson:redisson:jar:3.3.2:compile [INFO] | | +- io.netty:netty-common:jar:4.1.8.Final:compile [INFO] | | +- io.netty:netty-codec:jar:4.1.8.Final:compile [INFO] | | +- io.netty:netty-buffer:jar:4.1.8.Final:compile [INFO] | | +- io.netty:netty-transport:jar:4.1.8.Final:compile [INFO] | | +- io.netty:netty-handler:jar:4.1.8.Final:compile [INFO] | | +- javax.cache:cache-api:jar:1.0.0:compile [INFO] | | +- io.projectreactor:reactor-stream:jar:2.0.8.RELEASE:compile [INFO] | | | - io.projectreactor:reactor-core:jar:2.0.8.RELEASE:compile [INFO] | | | - org.reactivestreams:reactive-streams:jar:1.0.0:compile [INFO] | | +- com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:jar:2.8.7:compile [INFO] | | +- com.fasterxml.jackson.core:jackson-core:jar:2.8.7:compile [INFO] | | - com.fasterxml.jackson.core:jackson-databind:jar:2.8.7:compile [INFO] | | - com.fasterxml.jackson.core:jackson-annotations:jar:2.8.0:compile [INFO] | +- de.ruedigermoeller:fst:jar:2.50:compile [INFO] | | +- org.javassist:javassist:jar:3.21.0-GA:compile [INFO] | | +- org.objenesis:objenesis:jar:2.5.1:compile [INFO] | | - com.cedarsoftware:java-util:jar:1.9.0:compile [INFO] | | - com.cedarsoftware:json-io:jar:2.5.1:compile [INFO] | +- aopalliance:aopalliance:jar:1.0:compile [INFO] | - io.jsonwebtoken:jjwt:jar:0.7.0:compile [INFO] +- ch.qos.logback:logback-classic:jar:1.1.7:compile [INFO] | +- ch.qos.logback:logback-core:jar:1.1.7:compile [INFO] | - org.slf4j:slf4j-api:jar:1.7.20:compile [INFO] +- junit:junit:jar:4.11:compile [INFO] | - org.hamcrest:hamcrest-core:jar:1.3:compile [INFO] +- com.google.guava:guava:jar:18.0:compile [INFO] +- org.apache.commons:commons-lang3:jar:3.3.2:compile [INFO] +- org.apache.commons:commons-jexl:jar:2.1.1:compile [INFO] | - commons-logging:commons-logging:jar:1.1.1:compile [INFO] +- commons-beanutils:commons-beanutils:jar:1.9.2:compile [INFO] | - commons-collections:commons-collections:jar:3.2.1:compile [INFO] +- commons-codec:commons-codec:jar:1.10:compile [INFO] +- joda-time:joda-time:jar:2.7:compile [INFO] +- org.apache.commons:commons-email:jar:1.3.3:compile [INFO] | +- javax.mail:mail:jar:1.4.5:compile [INFO] | - javax.activation:activation:jar:1.1.1:compile [INFO] +- org.apache.commons:commons-csv:jar:1.1:compile [INFO] +- com.alipay.sdk:alipay-sdk-java:jar:3.7.26.ALL:compile [INFO] +- com.sunline:sign:jar:1.0:compile [INFO] - com.bankofchangsha:open-api-sdk-java:jar:1.0:compile [INFO] [INFO] -----------------< com.wuyexin:service-business-model >----------------- [INFO] Building service-business-model 1.0.0.1-SNAPSHOT [6/12] [INFO] --------------------------------[ jar ]--------------------------------- [INFO] [INFO] --- maven-dependency-plugin:2.8:tree (default-cli) @ service-business-model --- [INFO] com.wuyexin:service-business-model:jar:1.0.0.1-SNAPSHOT [INFO] +- com.wuyexin:data-persistence:jar:1.0.0.1-SNAPSHOT:compile [INFO] | - com.wuyexin:common-service:jar:1.0.0.1-SNAPSHOT:compile [INFO] | +- com.wuyexin:code-base:jar:1.0.0.1-SNAPSHOT:compile [INFO] | | +- org.apache.wicket:wicket-core:jar:7.10.0:compile [INFO] | | | +- org.apache.commons:commons-collections4:jar:4.1:compile [INFO] | | | +- org.apache.wicket:wicket-request:jar:7.10.0:compile [INFO] | | | - org.apache.wicket:wicket-util:jar:7.10.0:compile [INFO] | | | +- commons-fileupload:commons-fileupload:jar:1.3.2:compile [INFO] | | | - commons-io:commons-io:jar:2.5:compile [INFO] | | +- org.freemarker:freemarker:jar:2.3.20:compile [INFO] | | +- net.sf.jxls:jxls-core:jar:1.0.5:compile [INFO] | | | +- commons-digester:commons-digester:jar:2.0:compile [INFO] | | | +- org.apache.poi:poi:jar:3.9:compile [INFO] | | | - org.apache.poi:poi-ooxml:jar:3.9:compile [INFO] | | | +- org.apache.poi:poi-ooxml-schemas:jar:3.9:compile [INFO] | | | | - org.apache.xmlbeans:xmlbeans:jar:2.3.0:compile [INFO] | | | | - stax:stax-api:jar:1.0.1:compile [INFO] | | | - dom4j:dom4j:jar:1.6.1:compile [INFO] | | | - xml-apis:xml-apis:jar:1.0.b2:compile [INFO] | | +- net.sf.jxls:jxls-reader:jar:1.0.5:compile [INFO] | | +- org.mybatis:mybatis:jar:3.2.7:compile [INFO] | | +- org.mybatis:mybatis-guice:jar:3.6:compile [INFO] | | +- org.apache.wicket:wicket-guice:jar:7.10.0:compile [INFO] | | | +- com.google.inject:guice:jar:4.0:compile [INFO] | | | | - javax.inject:javax.inject:jar:1:compile [INFO] | | | - org.apache.wicket:wicket-ioc:jar:7.10.0:compile [INFO] | | | +- cglib:cglib:jar:3.1:compile [INFO] | | | - org.ow2.asm:asm-util:jar:5.0.3:compile [INFO] | | | - org.ow2.asm:asm-tree:jar:5.0.3:compile [INFO] | | | - org.ow2.asm:asm:jar:5.0.3:compile [INFO] | | +- org.hibernate:hibernate-validator:jar:4.3.1.Final:compile [INFO] | | | +- javax.validation:validation-api:jar:1.0.0.GA:compile [INFO] | | | - org.jboss.logging:jboss-logging:jar:3.1.0.CR2:compile [INFO] | | +- mysql:mysql-connector-java:jar:5.1.30:compile [INFO] | | +- org.wicketstuff:wicketstuff-restannotations:jar:7.10.0:compile [INFO] | | | - org.apache.wicket:wicket-auth-roles:jar:7.10.0:compile [INFO] | | +- org.wicketstuff:wicketstuff-restannotations-json:jar:7.10.0:compile [INFO] | | | - com.google.code.gson:gson:jar:2.4:compile [INFO] | | +- org.apache.httpcomponents:httpclient:jar:4.5.1:compile [INFO] | | | - org.apache.httpcomponents:httpcore:jar:4.4.3:compile [INFO] | | +- org.apache.logging.log4j:log4j-api:jar:2.7:compile [INFO] | | +- org.apache.logging.log4j:log4j-core:jar:2.7:compile [INFO] | | +- com.itextpdf:itextpdf:jar:5.5.10:compile [INFO] | | +- com.itextpdf.tool:xmlworker:jar:5.5.10:compile [INFO] | | +- org.codehaus.groovy:groovy-all:jar:2.4.12:compile [INFO] | | - net.sourceforge.javacsv:javacsv:jar:2.0:compile [INFO] | +- org.elasticsearch.client:transport:jar:5.1.1:compile [INFO] | | +- org.elasticsearch:elasticsearch:jar:5.1.1:compile [INFO] | | | +- org.apache.lucene:lucene-core:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-analyzers-common:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-backward-codecs:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-grouping:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-highlighter:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-join:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-memory:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-misc:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-queries:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-queryparser:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-sandbox:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-spatial:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-spatial-extras:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-spatial3d:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-suggest:jar:6.3.0:compile [INFO] | | | +- org.elasticsearch:securesm:jar:1.1:compile [INFO] | | | +- net.sf.jopt-simple:jopt-simple:jar:5.0.2:compile [INFO] | | | +- com.carrotsearch:hppc:jar:0.7.1:compile [INFO] | | | +- org.yaml:snakeyaml:jar:1.15:compile [INFO] | | | +- com.fasterxml.jackson.dataformat:jackson-dataformat-smile:jar:2.8.1:compile [INFO] | | | +- com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:jar:2.8.1:compile [INFO] | | | +- com.tdunning:t-digest:jar:3.0:compile [INFO] | | | +- org.hdrhistogram:HdrHistogram:jar:2.1.6:compile [INFO] | | | - net.java.dev.jna:jna:jar:4.2.2:compile [INFO] | | +- org.elasticsearch.plugin:transport-netty3-client:jar:5.1.1:compile [INFO] | | | - io.netty:netty:jar:3.10.6.Final:compile [INFO] | | +- org.elasticsearch.plugin:transport-netty4-client:jar:5.1.1:compile [INFO] | | | +- io.netty:netty-codec-http:jar:4.1.6.Final:compile [INFO] | | | - io.netty:netty-resolver:jar:4.1.6.Final:compile [INFO] | | +- org.elasticsearch.plugin:reindex-client:jar:5.1.1:compile [INFO] | | | - org.elasticsearch.client:rest:jar:5.1.1:compile [INFO] | | | +- org.apache.httpcomponents:httpasyncclient:jar:4.1.2:compile [INFO] | | | - org.apache.httpcomponents:httpcore-nio:jar:4.4.5:compile [INFO] | | +- org.elasticsearch.plugin:lang-mustache-client:jar:5.1.1:compile [INFO] | | | - com.github.spullara.mustache.java:compiler:jar:0.9.3:compile [INFO] | | - org.elasticsearch.plugin:percolator-client:jar:5.1.1:compile [INFO] | +- redis.clients:jedis:jar:2.9.0:compile [INFO] | | - org.apache.commons:commons-pool2:jar:2.4.2:compile [INFO] | +- org.redisson:redisson:jar:3.3.2:compile [INFO] | | +- io.netty:netty-common:jar:4.1.8.Final:compile [INFO] | | +- io.netty:netty-codec:jar:4.1.8.Final:compile [INFO] | | +- io.netty:netty-buffer:jar:4.1.8.Final:compile [INFO] | | +- io.netty:netty-transport:jar:4.1.8.Final:compile [INFO] | | +- io.netty:netty-handler:jar:4.1.8.Final:compile [INFO] | | +- javax.cache:cache-api:jar:1.0.0:compile [INFO] | | +- io.projectreactor:reactor-stream:jar:2.0.8.RELEASE:compile [INFO] | | | - io.projectreactor:reactor-core:jar:2.0.8.RELEASE:compile [INFO] | | | - org.reactivestreams:reactive-streams:jar:1.0.0:compile [INFO] | | +- com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:jar:2.8.7:compile [INFO] | | +- com.fasterxml.jackson.core:jackson-core:jar:2.8.7:compile [INFO] | | - com.fasterxml.jackson.core:jackson-databind:jar:2.8.7:compile [INFO] | | - com.fasterxml.jackson.core:jackson-annotations:jar:2.8.0:compile [INFO] | +- de.ruedigermoeller:fst:jar:2.50:compile [INFO] | | +- org.javassist:javassist:jar:3.21.0-GA:compile [INFO] | | +- org.objenesis:objenesis:jar:2.5.1:compile [INFO] | | - com.cedarsoftware:java-util:jar:1.9.0:compile [INFO] | | - com.cedarsoftware:json-io:jar:2.5.1:compile [INFO] | +- aopalliance:aopalliance:jar:1.0:compile [INFO] | - io.jsonwebtoken:jjwt:jar:0.7.0:compile [INFO] +- ch.qos.logback:logback-classic:jar:1.1.7:compile [INFO] | +- ch.qos.logback:logback-core:jar:1.1.7:compile [INFO] | - org.slf4j:slf4j-api:jar:1.7.20:compile [INFO] +- junit:junit:jar:4.11:compile [INFO] | - org.hamcrest:hamcrest-core:jar:1.3:compile [INFO] +- com.google.guava:guava:jar:18.0:compile [INFO] +- org.apache.commons:commons-lang3:jar:3.3.2:compile [INFO] +- org.apache.commons:commons-jexl:jar:2.1.1:compile [INFO] | - commons-logging:commons-logging:jar:1.1.1:compile [INFO] +- commons-beanutils:commons-beanutils:jar:1.9.2:compile [INFO] | - commons-collections:commons-collections:jar:3.2.1:compile [INFO] +- commons-codec:commons-codec:jar:1.10:compile [INFO] +- joda-time:joda-time:jar:2.7:compile [INFO] +- org.apache.commons:commons-email:jar:1.3.3:compile [INFO] | +- javax.mail:mail:jar:1.4.5:compile [INFO] | - javax.activation:activation:jar:1.1.1:compile [INFO] +- org.apache.commons:commons-csv:jar:1.1:compile [INFO] +- com.alipay.sdk:alipay-sdk-java:jar:3.7.26.ALL:compile [INFO] +- com.sunline:sign:jar:1.0:compile [INFO] - com.bankofchangsha:open-api-sdk-java:jar:1.0:compile [INFO] [INFO] ----------------< com.wuyexin:service-business-service >---------------- [INFO] Building service-business-service 1.0.0.1-SNAPSHOT [7/12] [INFO] --------------------------------[ jar ]--------------------------------- [INFO] [INFO] --- maven-dependency-plugin:2.8:tree (default-cli) @ service-business-service --- [INFO] com.wuyexin:service-business-service:jar:1.0.0.1-SNAPSHOT [INFO] +- com.wuyexin:service-business-model:jar:1.0.0.1-SNAPSHOT:compile [INFO] | - com.wuyexin:data-persistence:jar:1.0.0.1-SNAPSHOT:compile [INFO] | - com.wuyexin:common-service:jar:1.0.0.1-SNAPSHOT:compile [INFO] | +- com.wuyexin:code-base:jar:1.0.0.1-SNAPSHOT:compile [INFO] | | +- org.apache.wicket:wicket-core:jar:7.10.0:compile [INFO] | | | +- org.apache.commons:commons-collections4:jar:4.1:compile [INFO] | | | +- org.apache.wicket:wicket-request:jar:7.10.0:compile [INFO] | | | - org.apache.wicket:wicket-util:jar:7.10.0:compile [INFO] | | | +- commons-fileupload:commons-fileupload:jar:1.3.2:compile [INFO] | | | - commons-io:commons-io:jar:2.5:compile [INFO] | | +- org.freemarker:freemarker:jar:2.3.20:compile [INFO] | | +- net.sf.jxls:jxls-core:jar:1.0.5:compile [INFO] | | | +- commons-digester:commons-digester:jar:2.0:compile [INFO] | | | +- org.apache.poi:poi:jar:3.9:compile [INFO] | | | - org.apache.poi:poi-ooxml:jar:3.9:compile [INFO] | | | +- org.apache.poi:poi-ooxml-schemas:jar:3.9:compile [INFO] | | | | - org.apache.xmlbeans:xmlbeans:jar:2.3.0:compile [INFO] | | | | - stax:stax-api:jar:1.0.1:compile [INFO] | | | - dom4j:dom4j:jar:1.6.1:compile [INFO] | | | - xml-apis:xml-apis:jar:1.0.b2:compile [INFO] | | +- net.sf.jxls:jxls-reader:jar:1.0.5:compile [INFO] | | +- org.mybatis:mybatis:jar:3.2.7:compile [INFO] | | +- org.mybatis:mybatis-guice:jar:3.6:compile [INFO] | | +- org.apache.wicket:wicket-guice:jar:7.10.0:compile [INFO] | | | +- com.google.inject:guice:jar:4.0:compile [INFO] | | | | - javax.inject:javax.inject:jar:1:compile [INFO] | | | - org.apache.wicket:wicket-ioc:jar:7.10.0:compile [INFO] | | | +- cglib:cglib:jar:3.1:compile [INFO] | | | - org.ow2.asm:asm-util:jar:5.0.3:compile [INFO] | | | - org.ow2.asm:asm-tree:jar:5.0.3:compile [INFO] | | | - org.ow2.asm:asm:jar:5.0.3:compile [INFO] | | +- org.hibernate:hibernate-validator:jar:4.3.1.Final:compile [INFO] | | | +- javax.validation:validation-api:jar:1.0.0.GA:compile [INFO] | | | - org.jboss.logging:jboss-logging:jar:3.1.0.CR2:compile [INFO] | | +- mysql:mysql-connector-java:jar:5.1.30:compile [INFO] | | +- org.wicketstuff:wicketstuff-restannotations:jar:7.10.0:compile [INFO] | | | - org.apache.wicket:wicket-auth-roles:jar:7.10.0:compile [INFO] | | +- org.wicketstuff:wicketstuff-restannotations-json:jar:7.10.0:compile [INFO] | | +- org.apache.httpcomponents:httpclient:jar:4.5.1:compile [INFO] | | | - org.apache.httpcomponents:httpcore:jar:4.4.3:compile [INFO] | | +- org.apache.logging.log4j:log4j-api:jar:2.7:compile [INFO] | | +- org.apache.logging.log4j:log4j-core:jar:2.7:compile [INFO] | | +- com.itextpdf:itextpdf:jar:5.5.10:compile [INFO] | | +- com.itextpdf.tool:xmlworker:jar:5.5.10:compile [INFO] | | +- org.codehaus.groovy:groovy-all:jar:2.4.12:compile [INFO] | | - net.sourceforge.javacsv:javacsv:jar:2.0:compile [INFO] | +- org.elasticsearch.client:transport:jar:5.1.1:compile [INFO] | | +- org.elasticsearch:elasticsearch:jar:5.1.1:compile [INFO] | | | +- org.apache.lucene:lucene-core:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-analyzers-common:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-backward-codecs:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-grouping:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-highlighter:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-join:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-memory:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-misc:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-queries:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-queryparser:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-sandbox:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-spatial:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-spatial-extras:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-spatial3d:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-suggest:jar:6.3.0:compile [INFO] | | | +- org.elasticsearch:securesm:jar:1.1:compile [INFO] | | | +- net.sf.jopt-simple:jopt-simple:jar:5.0.2:compile [INFO] | | | +- com.carrotsearch:hppc:jar:0.7.1:compile [INFO] | | | +- org.yaml:snakeyaml:jar:1.15:compile [INFO] | | | +- com.fasterxml.jackson.dataformat:jackson-dataformat-smile:jar:2.8.1:compile [INFO] | | | +- com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:jar:2.8.1:compile [INFO] | | | +- com.tdunning:t-digest:jar:3.0:compile [INFO] | | | +- org.hdrhistogram:HdrHistogram:jar:2.1.6:compile [INFO] | | | - net.java.dev.jna:jna:jar:4.2.2:compile [INFO] | | +- org.elasticsearch.plugin:transport-netty3-client:jar:5.1.1:compile [INFO] | | | - io.netty:netty:jar:3.10.6.Final:compile [INFO] | | +- org.elasticsearch.plugin:transport-netty4-client:jar:5.1.1:compile [INFO] | | | +- io.netty:netty-codec-http:jar:4.1.6.Final:compile [INFO] | | | - io.netty:netty-resolver:jar:4.1.6.Final:compile [INFO] | | +- org.elasticsearch.plugin:reindex-client:jar:5.1.1:compile [INFO] | | | - org.elasticsearch.client:rest:jar:5.1.1:compile [INFO] | | | +- org.apache.httpcomponents:httpasyncclient:jar:4.1.2:compile [INFO] | | | - org.apache.httpcomponents:httpcore-nio:jar:4.4.5:compile [INFO] | | +- org.elasticsearch.plugin:lang-mustache-client:jar:5.1.1:compile [INFO] | | | - com.github.spullara.mustache.java:compiler:jar:0.9.3:compile [INFO] | | - org.elasticsearch.plugin:percolator-client:jar:5.1.1:compile [INFO] | +- redis.clients:jedis:jar:2.9.0:compile [INFO] | | - org.apache.commons:commons-pool2:jar:2.4.2:compile [INFO] | +- org.redisson:redisson:jar:3.3.2:compile [INFO] | | +- io.netty:netty-common:jar:4.1.8.Final:compile [INFO] | | +- io.netty:netty-codec:jar:4.1.8.Final:compile [INFO] | | +- io.netty:netty-buffer:jar:4.1.8.Final:compile [INFO] | | +- io.netty:netty-transport:jar:4.1.8.Final:compile [INFO] | | +- io.netty:netty-handler:jar:4.1.8.Final:compile [INFO] | | +- javax.cache:cache-api:jar:1.0.0:compile [INFO] | | +- io.projectreactor:reactor-stream:jar:2.0.8.RELEASE:compile [INFO] | | | - io.projectreactor:reactor-core:jar:2.0.8.RELEASE:compile [INFO] | | | - org.reactivestreams:reactive-streams:jar:1.0.0:compile [INFO] | | +- com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:jar:2.8.7:compile [INFO] | | +- com.fasterxml.jackson.core:jackson-core:jar:2.8.7:compile [INFO] | | - com.fasterxml.jackson.core:jackson-databind:jar:2.8.7:compile [INFO] | | - com.fasterxml.jackson.core:jackson-annotations:jar:2.8.0:compile [INFO] | +- de.ruedigermoeller:fst:jar:2.50:compile [INFO] | | +- org.javassist:javassist:jar:3.21.0-GA:compile [INFO] | | +- org.objenesis:objenesis:jar:2.5.1:compile [INFO] | | - com.cedarsoftware:java-util:jar:1.9.0:compile [INFO] | | - com.cedarsoftware:json-io:jar:2.5.1:compile [INFO] | +- aopalliance:aopalliance:jar:1.0:compile [INFO] | - io.jsonwebtoken:jjwt:jar:0.7.0:compile [INFO] +- javax:javaee-api:jar:7.0:provided [INFO] | - com.sun.mail:javax.mail:jar:1.5.0:provided [INFO] +- com.tencentcloudapi:tencentcloud-sdk-java:jar:3.1.276:compile [INFO] | +- commons-logging:commons-logging:jar:1.2:compile [INFO] | +- com.squareup.okio:okio:jar:1.12.0:compile [INFO] | +- com.squareup.okhttp:okhttp:jar:2.5.0:compile [INFO] | +- com.google.code.gson:gson:jar:2.2.4:compile [INFO] | +- javax.xml.bind:jaxb-api:jar:2.3.0:compile [INFO] | - com.squareup.okhttp:logging-interceptor:jar:2.7.5:compile [INFO] +- com.github.wechatpay-apiv3:wechatpay-java:jar:0.2.10:compile [INFO] | +- com.github.wechatpay-apiv3:wechatpay-java-core:jar:0.2.10:compile [INFO] | | - com.squareup.okhttp3:okhttp:jar:4.10.0:runtime [INFO] | | +- com.squareup.okio:okio-jvm:jar:3.0.0:runtime [INFO] | | | +- org.jetbrains.kotlin:kotlin-stdlib-jdk8:jar:1.5.31:runtime [INFO] | | | | - org.jetbrains.kotlin:kotlin-stdlib-jdk7:jar:1.5.31:runtime [INFO] | | | - org.jetbrains.kotlin:kotlin-stdlib-common:jar:1.5.31:runtime [INFO] | | - org.jetbrains.kotlin:kotlin-stdlib:jar:1.6.20:runtime [INFO] | | - org.jetbrains:annotations:jar:13.0:runtime [INFO] | - org.slf4j:slf4j-api:jar:1.7.36:compile [INFO] +- ch.qos.logback:logback-classic:jar:1.1.7:compile [INFO] | - ch.qos.logback:logback-core:jar:1.1.7:compile [INFO] +- junit:junit:jar:4.11:compile [INFO] | - org.hamcrest:hamcrest-core:jar:1.3:compile [INFO] +- com.google.guava:guava:jar:18.0:compile [INFO] +- org.apache.commons:commons-lang3:jar:3.3.2:compile [INFO] +- org.apache.commons:commons-jexl:jar:2.1.1:compile [INFO] +- commons-beanutils:commons-beanutils:jar:1.9.2:compile [INFO] | - commons-collections:commons-collections:jar:3.2.1:compile [INFO] +- commons-codec:commons-codec:jar:1.10:compile [INFO] +- joda-time:joda-time:jar:2.7:compile [INFO] +- org.apache.commons:commons-email:jar:1.3.3:compile [INFO] | +- javax.mail:mail:jar:1.4.5:compile [INFO] | - javax.activation:activation:jar:1.1.1:compile [INFO] +- org.apache.commons:commons-csv:jar:1.1:compile [INFO] +- com.alipay.sdk:alipay-sdk-java:jar:3.7.26.ALL:compile [INFO] +- com.sunline:sign:jar:1.0:compile [INFO] - com.bankofchangsha:open-api-sdk-java:jar:1.0:compile [INFO] [INFO] -------------------------< com.wuyexin:tasks >-------------------------- [INFO] Building tasks 1.0.0.1-SNAPSHOT [8/12] [INFO] --------------------------------[ jar ]--------------------------------- [INFO] [INFO] --- maven-dependency-plugin:2.8:tree (default-cli) @ tasks --- [INFO] com.wuyexin:tasks:jar:1.0.0.1-SNAPSHOT [INFO] +- com.wuyexin:common-service:jar:1.0.0.1-SNAPSHOT:compile [INFO] | +- com.wuyexin:code-base:jar:1.0.0.1-SNAPSHOT:compile [INFO] | | +- org.apache.wicket:wicket-core:jar:7.10.0:compile [INFO] | | | +- org.apache.commons:commons-collections4:jar:4.1:compile [INFO] | | | +- org.apache.wicket:wicket-request:jar:7.10.0:compile [INFO] | | | - org.apache.wicket:wicket-util:jar:7.10.0:compile [INFO] | | | +- commons-fileupload:commons-fileupload:jar:1.3.2:compile [INFO] | | | - commons-io:commons-io:jar:2.5:compile [INFO] | | +- org.freemarker:freemarker:jar:2.3.20:compile [INFO] | | +- net.sf.jxls:jxls-core:jar:1.0.5:compile [INFO] | | | +- commons-digester:commons-digester:jar:2.0:compile [INFO] | | | +- org.apache.poi:poi:jar:3.9:compile [INFO] | | | - org.apache.poi:poi-ooxml:jar:3.9:compile [INFO] | | | +- org.apache.poi:poi-ooxml-schemas:jar:3.9:compile [INFO] | | | | - org.apache.xmlbeans:xmlbeans:jar:2.3.0:compile [INFO] | | | | - stax:stax-api:jar:1.0.1:compile [INFO] | | | - dom4j:dom4j:jar:1.6.1:compile [INFO] | | | - xml-apis:xml-apis:jar:1.0.b2:compile [INFO] | | +- net.sf.jxls:jxls-reader:jar:1.0.5:compile [INFO] | | +- org.mybatis:mybatis:jar:3.2.7:compile [INFO] | | +- org.mybatis:mybatis-guice:jar:3.6:compile [INFO] | | +- org.apache.wicket:wicket-guice:jar:7.10.0:compile [INFO] | | | +- com.google.inject:guice:jar:4.0:compile [INFO] | | | | - javax.inject:javax.inject:jar:1:compile [INFO] | | | - org.apache.wicket:wicket-ioc:jar:7.10.0:compile [INFO] | | | +- cglib:cglib:jar:3.1:compile [INFO] | | | - org.ow2.asm:asm-util:jar:5.0.3:compile [INFO] | | | - org.ow2.asm:asm-tree:jar:5.0.3:compile [INFO] | | | - org.ow2.asm:asm:jar:5.0.3:compile [INFO] | | +- org.hibernate:hibernate-validator:jar:4.3.1.Final:compile [INFO] | | | +- javax.validation:validation-api:jar:1.0.0.GA:compile [INFO] | | | - org.jboss.logging:jboss-logging:jar:3.1.0.CR2:compile [INFO] | | +- mysql:mysql-connector-java:jar:5.1.30:compile [INFO] | | +- org.wicketstuff:wicketstuff-restannotations:jar:7.10.0:compile [INFO] | | | - org.apache.wicket:wicket-auth-roles:jar:7.10.0:compile [INFO] | | +- org.wicketstuff:wicketstuff-restannotations-json:jar:7.10.0:compile [INFO] | | +- org.apache.httpcomponents:httpclient:jar:4.5.1:compile [INFO] | | | - org.apache.httpcomponents:httpcore:jar:4.4.3:compile [INFO] | | +- org.apache.logging.log4j:log4j-api:jar:2.7:compile [INFO] | | +- org.apache.logging.log4j:log4j-core:jar:2.7:compile [INFO] | | +- com.itextpdf:itextpdf:jar:5.5.10:compile [INFO] | | +- com.itextpdf.tool:xmlworker:jar:5.5.10:compile [INFO] | | +- org.codehaus.groovy:groovy-all:jar:2.4.12:compile [INFO] | | - net.sourceforge.javacsv:javacsv:jar:2.0:compile [INFO] | +- org.elasticsearch.client:transport:jar:5.1.1:compile [INFO] | | +- org.elasticsearch:elasticsearch:jar:5.1.1:compile [INFO] | | | +- org.apache.lucene:lucene-core:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-analyzers-common:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-backward-codecs:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-grouping:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-highlighter:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-join:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-memory:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-misc:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-queries:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-queryparser:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-sandbox:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-spatial:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-spatial-extras:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-spatial3d:jar:6.3.0:compile [INFO] | | | +- org.apache.lucene:lucene-suggest:jar:6.3.0:compile [INFO] | | | +- org.elasticsearch:securesm:jar:1.1:compile [INFO] | | | +- net.sf.jopt-simple:jopt-simple:jar:5.0.2:compile [INFO] | | | +- com.carrotsearch:hppc:jar:0.7.1:compile [INFO] | | | +- org.yaml:snakeyaml:jar:1.15:compile [INFO] | | | +- com.fasterxml.jackson.dataformat:jackson-dataformat-smile:jar:2.8.1:compile [INFO] | | | +- com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:jar:2.8.1:compile [INFO] | | | +- com.tdunning:t-digest:jar:3.0:compile [INFO] | | | +- org.hdrhistogram:HdrHistogram:jar:2.1.6:compile [INFO] | | | - net.java.dev.jna:jna:jar:4.2.2:compile [INFO] | | +- org.elasticsearch.plugin:transport-netty3-client:jar:5.1.1:compile [INFO] | | | - io.netty:netty:jar:3.10.6.Final:compile [INFO] | | +- org.elasticsearch.plugin:transport-netty4-client:jar:5.1.1:compile [INFO] | | | +- io.netty:netty-codec-http:jar:4.1.6.Final:compile [INFO] | | | - io.netty:netty-resolver:jar:4.1.6.Final:compile [INFO] | | +- org.elasticsearch.plugin:reindex-client:jar:5.1.1:compile [INFO] | | | - org.elasticsearch.client:rest:jar:5.1.1:compile [INFO] | | | +- org.apache.httpcomponents:httpasyncclient:jar:4.1.2:compile [INFO] | | | - org.apache.httpcomponents:httpcore-nio:jar:4.4.5:compile [INFO] | | +- org.elasticsearch.plugin:lang-mustache-client:jar:5.1.1:compile [INFO] | | | - com.github.spullara.mustache.java:compiler:jar:0.9.3:compile [INFO] | | - org.elasticsearch.plugin:percolator-client:jar:5.1.1:compile [INFO] | +- redis.clients:jedis:jar:2.9.0:compile [INFO] | | - org.apache.commons:commons-pool2:jar:2.4.2:compile [INFO] | +- org.redisson:redisson:jar:3.3.2:compile [INFO] | | +- io.netty:netty-common:jar:4.1.8.Final:compile [INFO] | | +- io.netty:netty-codec:jar:4.1.8.Final:compile [INFO] | | +- io.netty:netty-buffer:jar:4.1.8.Final:compile [INFO] | | +- io.netty:netty-transport:jar:4.1.8.Final:compile [INFO] | | +- io.netty:netty-handler:jar:4.1.8.Final:compile [INFO] | | +- javax.cache:cache-api:jar:1.0.0:compile [INFO] | | +- io.projectreactor:reactor-stream:jar:2.0.8.RELEASE:compile [INFO] | | | - io.projectreactor:reactor-core:jar:2.0.8.RELEASE:compile [INFO] | | | - org.reactivestreams:reactive-streams:jar:1.0.0:compile [INFO] | | +- com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:jar:2.8.7:compile [INFO] | | +- com.fasterxml.jackson.core:jackson-core:jar:2.8.7:compile [INFO] | | - com.fasterxml.jackson.core:jackson-databind:jar:2.8.7:compile [INFO] | | - com.fasterxml.jackson.core:jackson-annotations:jar:2.8.0:compile [INFO] | +- de.ruedigermoeller:fst:jar:2.50:compile [INFO] | | +- org.javassist:javassist:jar:3.21.0-GA:compile [INFO] | | +- org.objenesis:objenesis:jar:2.5.1:compile [INFO] | | - com.cedarsoftware:java-util:jar:1.9.0:compile [INFO] | | - com.cedarsoftware:json-io:jar:2.5.1:compile [INFO] | +- aopalliance:aopalliance:jar:1.0:compile [INFO] | - io.jsonwebtoken:jjwt:jar:0.7.0:compile [INFO] +- com.wuyexin:service-business-service:jar:1.0.0.1-SNAPSHOT:compile [INFO] | +- com.wuyexin:service-business-model:jar:1.0.0.1-SNAPSHOT:compile [INFO] | | - com.wuyexin:data-persistence:jar:1.0.0.1-SNAPSHOT:compile [INFO] | +- com.tencentcloudapi:tencentcloud-sdk-java:jar:3.1.276:compile [INFO] | | +- com.squareup.okio:okio:jar:1.12.0:compile [INFO] | | +- com.squareup.okhttp:okhttp:jar:2.5.0:compile [INFO] | | +- com.google.code.gson:gson:jar:2.2.4:compile [INFO] | | +- javax.xml.bind:jaxb-api:jar:2.3.0:compile [INFO] | | - com.squareup.okhttp:logging-interceptor:jar:2.7.5:compile [INFO] | - com.github.wechatpay-apiv3:wechatpay-java:jar:0.2.10:compile [INFO] | - com.github.wechatpay-apiv3:wechatpay-java-core:jar:0.2.10:compile [INFO] | - com.squareup.okhttp3:okhttp:jar:4.10.0:runtime [INFO] | +- com.squareup.okio:okio-jvm:jar:3.0.0:runtime [INFO] | | +- org.jetbrains.kotlin:kotlin-stdlib-jdk8:jar:1.5.31:runtime [INFO] | | | - org.jetbrains.kotlin:kotlin-stdlib-jdk7:jar:1.5.31:runtime [INFO] | | - org.jetbrains.kotlin:kotlin-stdlib-common:jar:1.5.31:runtime [INFO] | - org.jetbrains.kotlin:kotlin-stdlib:jar:1.6.20:runtime [INFO] | - org.jetbrains:annotations:jar:13.0:runtime [INFO] +- ch.qos.logback:logback-classic:jar:1.1.7:compile [INFO] | +- ch.qos.logback:logback-core:jar:1.1.7:compile [INFO] | - org.slf4j:slf4j-api:jar:1.7.20:compile [INFO] +- junit:junit:jar:4.11:compile [INFO] | - org.hamcrest:hamcrest-core:jar:1.3:compile [INFO] +- com.google.guava:guava:jar:18.0:compile [INFO] +- org.apache.commons:commons-lang3:jar:3.3.2:compile [INFO] +- org.apache.commons:commons-jexl:jar:2.1.1:compile [INFO] | - commons-logging:commons-logging:jar:1.1.1:compile [INFO] +- commons-beanutils:commons-beanutils:jar:1.9.2:compile [INFO] | - commons-collections:commons-collections:jar:3.2.1:compile [INFO] +- commons-codec:commons-codec:jar:1.10:compile [INFO] +- joda-time:joda-time:jar:2.7:compile [INFO] +- org.apache.commons:commons-email:jar:1.3.3:compile [INFO] | +- javax.mail:mail:jar:1.4.5:compile [INFO] | - javax.activation:activation:jar:1.1.1:compile [INFO] +- org.apache.commons:commons-csv:jar:1.1:compile [INFO] +- com.alipay.sdk:alipay-sdk-java:jar:3.7.26.ALL:compile [INFO] +- com.sunline:sign:jar:1.0:compile [INFO] - com.bankofchangsha:open-api-sdk-java:jar:1.0:compile [INFO] [INFO] ------------------------< com.wuyexin:web-base >------------------------ [INFO] Building web-base 1.0.0.1-SNAPSHOT [9/12] [INFO] --------------------------------[ jar ]--------------------------------- [INFO] [INFO] --- maven-dependency-plugin:2.8:tree (default-cli) @ web-base --- [INFO] com.wuyexin:web-base:jar:1.0.0.1-SNAPSHOT [INFO] +- com.wuyexin:service-business-service:jar:1.0.0.1-SNAPSHOT:compile [INFO] | +- com.wuyexin:service-business-model:jar:1.0.0.1-SNAPSHOT:compile [INFO] | | - com.wuyexin:data-persistence:jar:1.0.0.1-SNAPSHOT:compile [INFO] | | - com.wuyexin:common-service:jar:1.0.0.1-SNAPSHOT:compile [INFO] | | +- com.wuyexin:code-base:jar:1.0.0.1-SNAPSHOT:compile [INFO] | | | +- org.freemarker:freemarker:jar:2.3.20:compile [INFO] | | | +- net.sf.jxls:jxls-core:jar:1.0.5:compile [INFO] | | | | +- commons-digester:commons-digester:jar:2.0:compile [INFO] | | | | +- org.apache.poi:poi:jar:3.9:compile [INFO] | | | | - org.apache.poi:poi-ooxml:jar:3.9:compile [INFO] | | | | +- org.apache.poi:poi-ooxml-schemas:jar:3.9:compile [INFO] | | | | | - org.apache.xmlbeans:xmlbeans:jar:2.3.0:compile [INFO] | | | | | - stax:stax-api:jar:1.0.1:compile [INFO] | | | | - dom4j:dom4j:jar:1.6.1:compile [INFO] | | | | - xml-apis:xml-apis:jar:1.0.b2:compile [INFO] | | | +- net.sf.jxls:jxls-reader:jar:1.0.5:compile [INFO] | | | +- org.mybatis:mybatis:jar:3.2.7:compile [INFO] | | | +- org.mybatis:mybatis-guice:jar:3.6:compile [INFO] | | | +- org.hibernate:hibernate-validator:jar:4.3.1.Final:compile [INFO] | | | | +- javax.validation:validation-api:jar:1.0.0.GA:compile [INFO] | | | | - org.jboss.logging:jboss-logging:jar:3.1.0.CR2:compile [INFO] | | | +- mysql:mysql-connector-java:jar:5.1.30:compile [INFO] | | | +- org.wicketstuff:wicketstuff-restannotations:jar:7.10.0:compile [INFO] | | | +- org.wicketstuff:wicketstuff-restannotations-json:jar:7.10.0:compile [INFO] | | | +- org.apache.httpcomponents:httpclient:jar:4.5.1:compile [INFO] | | | | - org.apache.httpcomponents:httpcore:jar:4.4.3:compile [INFO] | | | +- org.apache.logging.log4j:log4j-api:jar:2.7:compile [INFO] | | | +- org.apache.logging.log4j:log4j-core:jar:2.7:compile [INFO] | | | +- com.itextpdf:itextpdf:jar:5.5.10:compile [INFO] | | | +- com.itextpdf.tool:xmlworker:jar:5.5.10:compile [INFO] | | | +- org.codehaus.groovy:groovy-all:jar:2.4.12:compile [INFO] | | | - net.sourceforge.javacsv:javacsv:jar:2.0:compile [INFO] | | +- org.elasticsearch.client:transport:jar:5.1.1:compile [INFO] | | | +- org.elasticsearch:elasticsearch:jar:5.1.1:compile [INFO] | | | | +- org.apache.lucene:lucene-core:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-analyzers-common:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-backward-codecs:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-grouping:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-highlighter:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-join:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-memory:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-misc:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-queries:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-queryparser:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-sandbox:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-spatial:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-spatial-extras:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-spatial3d:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-suggest:jar:6.3.0:compile [INFO] | | | | +- org.elasticsearch:securesm:jar:1.1:compile [INFO] | | | | +- net.sf.jopt-simple:jopt-simple:jar:5.0.2:compile [INFO] | | | | +- com.carrotsearch:hppc:jar:0.7.1:compile [INFO] | | | | +- org.yaml:snakeyaml:jar:1.15:compile [INFO] | | | | +- com.fasterxml.jackson.dataformat:jackson-dataformat-smile:jar:2.8.1:compile [INFO] | | | | +- com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:jar:2.8.1:compile [INFO] | | | | +- com.tdunning:t-digest:jar:3.0:compile [INFO] | | | | +- org.hdrhistogram:HdrHistogram:jar:2.1.6:compile [INFO] | | | | - net.java.dev.jna:jna:jar:4.2.2:compile [INFO] | | | +- org.elasticsearch.plugin:transport-netty3-client:jar:5.1.1:compile [INFO] | | | | - io.netty:netty:jar:3.10.6.Final:compile [INFO] | | | +- org.elasticsearch.plugin:transport-netty4-client:jar:5.1.1:compile [INFO] | | | | +- io.netty:netty-codec-http:jar:4.1.6.Final:compile [INFO] | | | | - io.netty:netty-resolver:jar:4.1.6.Final:compile [INFO] | | | +- org.elasticsearch.plugin:reindex-client:jar:5.1.1:compile [INFO] | | | | - org.elasticsearch.client:rest:jar:5.1.1:compile [INFO] | | | | +- org.apache.httpcomponents:httpasyncclient:jar:4.1.2:compile [INFO] | | | | - org.apache.httpcomponents:httpcore-nio:jar:4.4.5:compile [INFO] | | | +- org.elasticsearch.plugin:lang-mustache-client:jar:5.1.1:compile [INFO] | | | | - com.github.spullara.mustache.java:compiler:jar:0.9.3:compile [INFO] | | | - org.elasticsearch.plugin:percolator-client:jar:5.1.1:compile [INFO] | | +- redis.clients:jedis:jar:2.9.0:compile [INFO] | | | - org.apache.commons:commons-pool2:jar:2.4.2:compile [INFO] | | +- org.redisson:redisson:jar:3.3.2:compile [INFO] | | | +- io.netty:netty-common:jar:4.1.8.Final:compile [INFO] | | | +- io.netty:netty-codec:jar:4.1.8.Final:compile [INFO] | | | +- io.netty:netty-buffer:jar:4.1.8.Final:compile [INFO] | | | +- io.netty:netty-transport:jar:4.1.8.Final:compile [INFO] | | | +- io.netty:netty-handler:jar:4.1.8.Final:compile [INFO] | | | +- javax.cache:cache-api:jar:1.0.0:compile [INFO] | | | +- io.projectreactor:reactor-stream:jar:2.0.8.RELEASE:compile [INFO] | | | | - io.projectreactor:reactor-core:jar:2.0.8.RELEASE:compile [INFO] | | | | - org.reactivestreams:reactive-streams:jar:1.0.0:compile [INFO] | | | +- com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:jar:2.8.7:compile [INFO] | | | +- com.fasterxml.jackson.core:jackson-core:jar:2.8.7:compile [INFO] | | | - com.fasterxml.jackson.core:jackson-databind:jar:2.8.7:compile [INFO] | | | - com.fasterxml.jackson.core:jackson-annotations:jar:2.8.0:compile [INFO] | | +- de.ruedigermoeller:fst:jar:2.50:compile [INFO] | | | +- org.javassist:javassist:jar:3.21.0-GA:compile [INFO] | | | +- org.objenesis:objenesis:jar:2.5.1:compile [INFO] | | | - com.cedarsoftware:java-util:jar:1.9.0:compile [INFO] | | | - com.cedarsoftware:json-io:jar:2.5.1:compile [INFO] | | - io.jsonwebtoken:jjwt:jar:0.7.0:compile [INFO] | +- com.tencentcloudapi:tencentcloud-sdk-java:jar:3.1.276:compile [INFO] | | +- com.squareup.okio:okio:jar:1.12.0:compile [INFO] | | +- com.squareup.okhttp:okhttp:jar:2.5.0:compile [INFO] | | +- com.google.code.gson:gson:jar:2.2.4:compile [INFO] | | +- javax.xml.bind:jaxb-api:jar:2.3.0:compile [INFO] | | - com.squareup.okhttp:logging-interceptor:jar:2.7.5:compile [INFO] | - com.github.wechatpay-apiv3:wechatpay-java:jar:0.2.10:compile [INFO] | - com.github.wechatpay-apiv3:wechatpay-java-core:jar:0.2.10:compile [INFO] | - com.squareup.okhttp3:okhttp:jar:4.10.0:runtime [INFO] | +- com.squareup.okio:okio-jvm:jar:3.0.0:runtime [INFO] | | +- org.jetbrains.kotlin:kotlin-stdlib-jdk8:jar:1.5.31:runtime [INFO] | | | - org.jetbrains.kotlin:kotlin-stdlib-jdk7:jar:1.5.31:runtime [INFO] | | - org.jetbrains.kotlin:kotlin-stdlib-common:jar:1.5.31:runtime [INFO] | - org.jetbrains.kotlin:kotlin-stdlib:jar:1.6.20:runtime [INFO] | - org.jetbrains:annotations:jar:13.0:runtime [INFO] +- org.apache.wicket:wicket-core:jar:7.10.0:compile [INFO] | +- org.apache.commons:commons-collections4:jar:4.1:compile [INFO] | - org.slf4j:slf4j-api:jar:1.7.21:compile [INFO] +- org.apache.wicket:wicket-util:jar:7.10.0:compile [INFO] | +- commons-fileupload:commons-fileupload:jar:1.3.2:compile [INFO] | - commons-io:commons-io:jar:2.5:compile [INFO] +- org.apache.wicket:wicket-request:jar:7.10.0:compile [INFO] +- org.apache.wicket:wicket-extensions:jar:7.10.0:compile [INFO] +- org.apache.wicket:wicket-devutils:jar:7.10.0:compile [INFO] +- org.apache.wicket:wicket-datetime:jar:7.10.0:compile [INFO] +- org.apache.wicket:wicket-auth-roles:jar:7.10.0:compile [INFO] +- org.apache.wicket:wicket-ioc:jar:7.10.0:compile [INFO] | +- cglib:cglib:jar:3.1:compile [INFO] | +- javax.inject:javax.inject:jar:1:compile [INFO] | - org.ow2.asm:asm-util:jar:5.0.3:compile [INFO] | - org.ow2.asm:asm-tree:jar:5.0.3:compile [INFO] | - org.ow2.asm:asm:jar:5.0.3:compile [INFO] +- org.apache.wicket:wicket-guice:jar:7.10.0:compile [INFO] | - com.google.inject:guice:jar:4.0:compile [INFO] | - aopalliance:aopalliance:jar:1.0:compile [INFO] +- org.apache.wicket:wicket-bean-validation:jar:7.10.0:compile [INFO] +- com.octo.captcha:jcaptcha:jar:2.0-alpha-1:compile [INFO] +- com.octo.captcha:jcaptcha-api:jar:2.0-alpha-1:compile [INFO] +- com.jhlabs:filters:jar:2.0.235:compile [INFO] +- javax.servlet:javax.servlet-api:jar:3.1.0:provided [INFO] +- ch.qos.logback:logback-classic:jar:1.1.7:compile [INFO] | - ch.qos.logback:logback-core:jar:1.1.7:compile [INFO] +- junit:junit:jar:4.11:compile [INFO] | - org.hamcrest:hamcrest-core:jar:1.3:compile [INFO] +- com.google.guava:guava:jar:18.0:compile [INFO] +- org.apache.commons:commons-lang3:jar:3.3.2:compile [INFO] +- org.apache.commons:commons-jexl:jar:2.1.1:compile [INFO] | - commons-logging:commons-logging:jar:1.1.1:compile [INFO] +- commons-beanutils:commons-beanutils:jar:1.9.2:compile [INFO] | - commons-collections:commons-collections:jar:3.2.1:compile [INFO] +- commons-codec:commons-codec:jar:1.10:compile [INFO] +- joda-time:joda-time:jar:2.7:compile [INFO] +- org.apache.commons:commons-email:jar:1.3.3:compile [INFO] | +- javax.mail:mail:jar:1.4.5:compile [INFO] | - javax.activation:activation:jar:1.1.1:compile [INFO] +- org.apache.commons:commons-csv:jar:1.1:compile [INFO] +- com.alipay.sdk:alipay-sdk-java:jar:3.7.26.ALL:compile [INFO] +- com.sunline:sign:jar:1.0:compile [INFO] - com.bankofchangsha:open-api-sdk-java:jar:1.0:compile [INFO] [INFO] ------------------------< com.wuyexin:web-rest >------------------------ [INFO] Building web-rest 1.0.0.1-SNAPSHOT [10/12] [INFO] --------------------------------[ war ]--------------------------------- [INFO] [INFO] --- maven-dependency-plugin:2.8:tree (default-cli) @ web-rest --- [INFO] com.wuyexin:web-rest:war:1.0.0.1-SNAPSHOT [INFO] +- com.wuyexin:tasks:jar:1.0.0.1-SNAPSHOT:compile [INFO] | +- com.wuyexin:common-service:jar:1.0.0.1-SNAPSHOT:compile [INFO] | | +- com.wuyexin:code-base:jar:1.0.0.1-SNAPSHOT:compile [INFO] | | | +- org.freemarker:freemarker:jar:2.3.20:compile [INFO] | | | +- net.sf.jxls:jxls-core:jar:1.0.5:compile [INFO] | | | | +- commons-digester:commons-digester:jar:2.0:compile [INFO] | | | | +- org.apache.poi:poi:jar:3.9:compile [INFO] | | | | - org.apache.poi:poi-ooxml:jar:3.9:compile [INFO] | | | | +- org.apache.poi:poi-ooxml-schemas:jar:3.9:compile [INFO] | | | | | - org.apache.xmlbeans:xmlbeans:jar:2.3.0:compile [INFO] | | | | | - stax:stax-api:jar:1.0.1:compile [INFO] | | | | - dom4j:dom4j:jar:1.6.1:compile [INFO] | | | | - xml-apis:xml-apis:jar:1.0.b2:compile [INFO] | | | +- net.sf.jxls:jxls-reader:jar:1.0.5:compile [INFO] | | | +- org.mybatis:mybatis:jar:3.2.7:compile [INFO] | | | +- org.mybatis:mybatis-guice:jar:3.6:compile [INFO] | | | +- org.hibernate:hibernate-validator:jar:4.3.1.Final:compile [INFO] | | | | +- javax.validation:validation-api:jar:1.0.0.GA:compile [INFO] | | | | - org.jboss.logging:jboss-logging:jar:3.1.0.CR2:compile [INFO] | | | +- mysql:mysql-connector-java:jar:5.1.30:compile [INFO] | | | +- org.wicketstuff:wicketstuff-restannotations:jar:7.10.0:compile [INFO] | | | +- org.wicketstuff:wicketstuff-restannotations-json:jar:7.10.0:compile [INFO] | | | +- org.apache.httpcomponents:httpclient:jar:4.5.1:compile [INFO] | | | | - org.apache.httpcomponents:httpcore:jar:4.4.3:compile [INFO] | | | +- org.apache.logging.log4j:log4j-api:jar:2.7:compile [INFO] | | | +- org.apache.logging.log4j:log4j-core:jar:2.7:compile [INFO] | | | +- com.itextpdf:itextpdf:jar:5.5.10:compile [INFO] | | | +- com.itextpdf.tool:xmlworker:jar:5.5.10:compile [INFO] | | | +- org.codehaus.groovy:groovy-all:jar:2.4.12:compile [INFO] | | | - net.sourceforge.javacsv:javacsv:jar:2.0:compile [INFO] | | +- org.elasticsearch.client:transport:jar:5.1.1:compile [INFO] | | | +- org.elasticsearch:elasticsearch:jar:5.1.1:compile [INFO] | | | | +- org.apache.lucene:lucene-core:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-analyzers-common:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-backward-codecs:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-grouping:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-highlighter:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-join:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-memory:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-misc:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-queries:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-queryparser:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-sandbox:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-spatial:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-spatial-extras:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-spatial3d:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-suggest:jar:6.3.0:compile [INFO] | | | | +- org.elasticsearch:securesm:jar:1.1:compile [INFO] | | | | +- net.sf.jopt-simple:jopt-simple:jar:5.0.2:compile [INFO] | | | | +- com.carrotsearch:hppc:jar:0.7.1:compile [INFO] | | | | +- org.yaml:snakeyaml:jar:1.15:compile [INFO] | | | | +- com.fasterxml.jackson.dataformat:jackson-dataformat-smile:jar:2.8.1:compile [INFO] | | | | +- com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:jar:2.8.1:compile [INFO] | | | | +- com.tdunning:t-digest:jar:3.0:compile [INFO] | | | | +- org.hdrhistogram:HdrHistogram:jar:2.1.6:compile [INFO] | | | | - net.java.dev.jna:jna:jar:4.2.2:compile [INFO] | | | +- org.elasticsearch.plugin:transport-netty3-client:jar:5.1.1:compile [INFO] | | | | - io.netty:netty:jar:3.10.6.Final:compile [INFO] | | | +- org.elasticsearch.plugin:transport-netty4-client:jar:5.1.1:compile [INFO] | | | | +- io.netty:netty-codec-http:jar:4.1.6.Final:compile [INFO] | | | | - io.netty:netty-resolver:jar:4.1.6.Final:compile [INFO] | | | +- org.elasticsearch.plugin:reindex-client:jar:5.1.1:compile [INFO] | | | | - org.elasticsearch.client:rest:jar:5.1.1:compile [INFO] | | | | +- org.apache.httpcomponents:httpasyncclient:jar:4.1.2:compile [INFO] | | | | - org.apache.httpcomponents:httpcore-nio:jar:4.4.5:compile [INFO] | | | +- org.elasticsearch.plugin:lang-mustache-client:jar:5.1.1:compile [INFO] | | | | - com.github.spullara.mustache.java:compiler:jar:0.9.3:compile [INFO] | | | - org.elasticsearch.plugin:percolator-client:jar:5.1.1:compile [INFO] | | +- redis.clients:jedis:jar:2.9.0:compile [INFO] | | | - org.apache.commons:commons-pool2:jar:2.4.2:compile [INFO] | | +- org.redisson:redisson:jar:3.3.2:compile [INFO] | | | +- io.netty:netty-common:jar:4.1.8.Final:compile [INFO] | | | +- io.netty:netty-codec:jar:4.1.8.Final:compile [INFO] | | | +- io.netty:netty-buffer:jar:4.1.8.Final:compile [INFO] | | | +- io.netty:netty-transport:jar:4.1.8.Final:compile [INFO] | | | +- io.netty:netty-handler:jar:4.1.8.Final:compile [INFO] | | | +- javax.cache:cache-api:jar:1.0.0:compile [INFO] | | | +- io.projectreactor:reactor-stream:jar:2.0.8.RELEASE:compile [INFO] | | | | - io.projectreactor:reactor-core:jar:2.0.8.RELEASE:compile [INFO] | | | | - org.reactivestreams:reactive-streams:jar:1.0.0:compile [INFO] | | | +- com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:jar:2.8.7:compile [INFO] | | | +- com.fasterxml.jackson.core:jackson-core:jar:2.8.7:compile [INFO] | | | - com.fasterxml.jackson.core:jackson-databind:jar:2.8.7:compile [INFO] | | | - com.fasterxml.jackson.core:jackson-annotations:jar:2.8.0:compile [INFO] | | +- de.ruedigermoeller:fst:jar:2.50:compile [INFO] | | | +- org.javassist:javassist:jar:3.21.0-GA:compile [INFO] | | | +- org.objenesis:objenesis:jar:2.5.1:compile [INFO] | | | - com.cedarsoftware:java-util:jar:1.9.0:compile [INFO] | | | - com.cedarsoftware:json-io:jar:2.5.1:compile [INFO] | | +- aopalliance:aopalliance:jar:1.0:compile [INFO] | | - io.jsonwebtoken:jjwt:jar:0.7.0:compile [INFO] | - com.wuyexin:service-business-service:jar:1.0.0.1-SNAPSHOT:compile [INFO] | +- com.wuyexin:service-business-model:jar:1.0.0.1-SNAPSHOT:compile [INFO] | | - com.wuyexin:data-persistence:jar:1.0.0.1-SNAPSHOT:compile [INFO] | +- com.tencentcloudapi:tencentcloud-sdk-java:jar:3.1.276:compile [INFO] | | +- com.squareup.okio:okio:jar:1.12.0:compile [INFO] | | +- com.squareup.okhttp:okhttp:jar:2.5.0:compile [INFO] | | +- com.google.code.gson:gson:jar:2.2.4:compile [INFO] | | +- javax.xml.bind:jaxb-api:jar:2.3.0:compile [INFO] | | - com.squareup.okhttp:logging-interceptor:jar:2.7.5:compile [INFO] | - com.github.wechatpay-apiv3:wechatpay-java:jar:0.2.10:compile [INFO] | - com.github.wechatpay-apiv3:wechatpay-java-core:jar:0.2.10:compile [INFO] | - com.squareup.okhttp3:okhttp:jar:4.10.0:runtime [INFO] | +- com.squareup.okio:okio-jvm:jar:3.0.0:runtime [INFO] | | +- org.jetbrains.kotlin:kotlin-stdlib-jdk8:jar:1.5.31:runtime [INFO] | | | - org.jetbrains.kotlin:kotlin-stdlib-jdk7:jar:1.5.31:runtime [INFO] | | - org.jetbrains.kotlin:kotlin-stdlib-common:jar:1.5.31:runtime [INFO] | - org.jetbrains.kotlin:kotlin-stdlib:jar:1.6.20:runtime [INFO] | - org.jetbrains:annotations:jar:13.0:runtime [INFO] +- com.wuyexin:web-base:jar:1.0.0.1-SNAPSHOT:compile [INFO] | +- org.apache.wicket:wicket-core:jar:7.10.0:compile [INFO] | | - org.apache.commons:commons-collections4:jar:4.1:compile [INFO] | +- org.apache.wicket:wicket-util:jar:7.10.0:compile [INFO] | | +- commons-fileupload:commons-fileupload:jar:1.3.2:compile [INFO] | | - commons-io:commons-io:jar:2.5:compile [INFO] | +- org.apache.wicket:wicket-request:jar:7.10.0:compile [INFO] | +- org.apache.wicket:wicket-extensions:jar:7.10.0:compile [INFO] | +- org.apache.wicket:wicket-devutils:jar:7.10.0:compile [INFO] | +- org.apache.wicket:wicket-datetime:jar:7.10.0:compile [INFO] | +- org.apache.wicket:wicket-auth-roles:jar:7.10.0:compile [INFO] | +- org.apache.wicket:wicket-ioc:jar:7.10.0:compile [INFO] | | +- cglib:cglib:jar:3.1:compile [INFO] | | +- javax.inject:javax.inject:jar:1:compile [INFO] | | - org.ow2.asm:asm-util:jar:5.0.3:compile [INFO] | | - org.ow2.asm:asm-tree:jar:5.0.3:compile [INFO] | | - org.ow2.asm:asm:jar:5.0.3:compile [INFO] | +- org.apache.wicket:wicket-guice:jar:7.10.0:compile [INFO] | | - com.google.inject:guice:jar:4.0:compile [INFO] | +- org.apache.wicket:wicket-bean-validation:jar:7.10.0:compile [INFO] | +- com.octo.captcha:jcaptcha:jar:2.0-alpha-1:compile [INFO] | +- com.octo.captcha:jcaptcha-api:jar:2.0-alpha-1:compile [INFO] | - com.jhlabs:filters:jar:2.0.235:compile [INFO] +- javax.servlet:javax.servlet-api:jar:3.1.0:compile [INFO] +- ch.qos.logback:logback-classic:jar:1.1.7:compile [INFO] | +- ch.qos.logback:logback-core:jar:1.1.7:compile [INFO] | - org.slf4j:slf4j-api:jar:1.7.20:compile [INFO] +- junit:junit:jar:4.11:compile [INFO] | - org.hamcrest:hamcrest-core:jar:1.3:compile [INFO] +- com.google.guava:guava:jar:18.0:compile [INFO] +- org.apache.commons:commons-lang3:jar:3.3.2:compile [INFO] +- org.apache.commons:commons-jexl:jar:2.1.1:compile [INFO] | - commons-logging:commons-logging:jar:1.1.1:compile [INFO] +- commons-beanutils:commons-beanutils:jar:1.9.2:compile [INFO] | - commons-collections:commons-collections:jar:3.2.1:compile [INFO] +- commons-codec:commons-codec:jar:1.10:compile [INFO] +- joda-time:joda-time:jar:2.7:compile [INFO] +- org.apache.commons:commons-email:jar:1.3.3:compile [INFO] | +- javax.mail:mail:jar:1.4.5:compile [INFO] | - javax.activation:activation:jar:1.1.1:compile [INFO] +- org.apache.commons:commons-csv:jar:1.1:compile [INFO] +- com.alipay.sdk:alipay-sdk-java:jar:3.7.26.ALL:compile [INFO] +- com.sunline:sign:jar:1.0:compile [INFO] - com.bankofchangsha:open-api-sdk-java:jar:1.0:compile [INFO] [INFO] ------------------------< com.wuyexin:web-view >------------------------ [INFO] Building web-view 1.0.0.1-SNAPSHOT [11/12] [INFO] --------------------------------[ war ]--------------------------------- [INFO] [INFO] --- maven-dependency-plugin:2.8:tree (default-cli) @ web-view --- [INFO] com.wuyexin:web-view:war:1.0.0.1-SNAPSHOT [INFO] +- com.wuyexin:tasks:jar:1.0.0.1-SNAPSHOT:compile [INFO] | +- com.wuyexin:common-service:jar:1.0.0.1-SNAPSHOT:compile [INFO] | | +- com.wuyexin:code-base:jar:1.0.0.1-SNAPSHOT:compile [INFO] | | | +- org.freemarker:freemarker:jar:2.3.20:compile [INFO] | | | +- net.sf.jxls:jxls-core:jar:1.0.5:compile [INFO] | | | | +- commons-digester:commons-digester:jar:2.0:compile [INFO] | | | | +- org.apache.poi:poi:jar:3.9:compile [INFO] | | | | - org.apache.poi:poi-ooxml:jar:3.9:compile [INFO] | | | | +- org.apache.poi:poi-ooxml-schemas:jar:3.9:compile [INFO] | | | | | - org.apache.xmlbeans:xmlbeans:jar:2.3.0:compile [INFO] | | | | | - stax:stax-api:jar:1.0.1:compile [INFO] | | | | - dom4j:dom4j:jar:1.6.1:compile [INFO] | | | | - xml-apis:xml-apis:jar:1.0.b2:compile [INFO] | | | +- net.sf.jxls:jxls-reader:jar:1.0.5:compile [INFO] | | | +- org.mybatis:mybatis:jar:3.2.7:compile [INFO] | | | +- org.mybatis:mybatis-guice:jar:3.6:compile [INFO] | | | +- org.hibernate:hibernate-validator:jar:4.3.1.Final:compile [INFO] | | | | +- javax.validation:validation-api:jar:1.0.0.GA:compile [INFO] | | | | - org.jboss.logging:jboss-logging:jar:3.1.0.CR2:compile [INFO] | | | +- mysql:mysql-connector-java:jar:5.1.30:compile [INFO] | | | +- org.wicketstuff:wicketstuff-restannotations:jar:7.10.0:compile [INFO] | | | +- org.wicketstuff:wicketstuff-restannotations-json:jar:7.10.0:compile [INFO] | | | +- org.apache.httpcomponents:httpclient:jar:4.5.1:compile [INFO] | | | | - org.apache.httpcomponents:httpcore:jar:4.4.3:compile [INFO] | | | +- org.apache.logging.log4j:log4j-api:jar:2.7:compile [INFO] | | | +- org.apache.logging.log4j:log4j-core:jar:2.7:compile [INFO] | | | +- com.itextpdf:itextpdf:jar:5.5.10:compile [INFO] | | | +- com.itextpdf.tool:xmlworker:jar:5.5.10:compile [INFO] | | | +- org.codehaus.groovy:groovy-all:jar:2.4.12:compile [INFO] | | | - net.sourceforge.javacsv:javacsv:jar:2.0:compile [INFO] | | +- org.elasticsearch.client:transport:jar:5.1.1:compile [INFO] | | | +- org.elasticsearch:elasticsearch:jar:5.1.1:compile [INFO] | | | | +- org.apache.lucene:lucene-core:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-analyzers-common:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-backward-codecs:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-grouping:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-highlighter:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-join:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-memory:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-misc:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-queries:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-queryparser:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-sandbox:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-spatial:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-spatial-extras:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-spatial3d:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-suggest:jar:6.3.0:compile [INFO] | | | | +- org.elasticsearch:securesm:jar:1.1:compile [INFO] | | | | +- net.sf.jopt-simple:jopt-simple:jar:5.0.2:compile [INFO] | | | | +- com.carrotsearch:hppc:jar:0.7.1:compile [INFO] | | | | +- org.yaml:snakeyaml:jar:1.15:compile [INFO] | | | | +- com.fasterxml.jackson.dataformat:jackson-dataformat-smile:jar:2.8.1:compile [INFO] | | | | +- com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:jar:2.8.1:compile [INFO] | | | | +- com.tdunning:t-digest:jar:3.0:compile [INFO] | | | | +- org.hdrhistogram:HdrHistogram:jar:2.1.6:compile [INFO] | | | | - net.java.dev.jna:jna:jar:4.2.2:compile [INFO] | | | +- org.elasticsearch.plugin:transport-netty3-client:jar:5.1.1:compile [INFO] | | | | - io.netty:netty:jar:3.10.6.Final:compile [INFO] | | | +- org.elasticsearch.plugin:transport-netty4-client:jar:5.1.1:compile [INFO] | | | | +- io.netty:netty-codec-http:jar:4.1.6.Final:compile [INFO] | | | | - io.netty:netty-resolver:jar:4.1.6.Final:compile [INFO] | | | +- org.elasticsearch.plugin:reindex-client:jar:5.1.1:compile [INFO] | | | | - org.elasticsearch.client:rest:jar:5.1.1:compile [INFO] | | | | +- org.apache.httpcomponents:httpasyncclient:jar:4.1.2:compile [INFO] | | | | - org.apache.httpcomponents:httpcore-nio:jar:4.4.5:compile [INFO] | | | +- org.elasticsearch.plugin:lang-mustache-client:jar:5.1.1:compile [INFO] | | | | - com.github.spullara.mustache.java:compiler:jar:0.9.3:compile [INFO] | | | - org.elasticsearch.plugin:percolator-client:jar:5.1.1:compile [INFO] | | +- redis.clients:jedis:jar:2.9.0:compile [INFO] | | | - org.apache.commons:commons-pool2:jar:2.4.2:compile [INFO] | | +- org.redisson:redisson:jar:3.3.2:compile [INFO] | | | +- io.netty:netty-common:jar:4.1.8.Final:compile [INFO] | | | +- io.netty:netty-codec:jar:4.1.8.Final:compile [INFO] | | | +- io.netty:netty-buffer:jar:4.1.8.Final:compile [INFO] | | | +- io.netty:netty-transport:jar:4.1.8.Final:compile [INFO] | | | +- io.netty:netty-handler:jar:4.1.8.Final:compile [INFO] | | | +- javax.cache:cache-api:jar:1.0.0:compile [INFO] | | | +- io.projectreactor:reactor-stream:jar:2.0.8.RELEASE:compile [INFO] | | | | - io.projectreactor:reactor-core:jar:2.0.8.RELEASE:compile [INFO] | | | | - org.reactivestreams:reactive-streams:jar:1.0.0:compile [INFO] | | | +- com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:jar:2.8.7:compile [INFO] | | | +- com.fasterxml.jackson.core:jackson-core:jar:2.8.7:compile [INFO] | | | - com.fasterxml.jackson.core:jackson-databind:jar:2.8.7:compile [INFO] | | | - com.fasterxml.jackson.core:jackson-annotations:jar:2.8.0:compile [INFO] | | +- de.ruedigermoeller:fst:jar:2.50:compile [INFO] | | | +- org.javassist:javassist:jar:3.21.0-GA:compile [INFO] | | | +- org.objenesis:objenesis:jar:2.5.1:compile [INFO] | | | - com.cedarsoftware:java-util:jar:1.9.0:compile [INFO] | | | - com.cedarsoftware:json-io:jar:2.5.1:compile [INFO] | | +- aopalliance:aopalliance:jar:1.0:compile [INFO] | | - io.jsonwebtoken:jjwt:jar:0.7.0:compile [INFO] | - com.wuyexin:service-business-service:jar:1.0.0.1-SNAPSHOT:compile [INFO] | +- com.wuyexin:service-business-model:jar:1.0.0.1-SNAPSHOT:compile [INFO] | | - com.wuyexin:data-persistence:jar:1.0.0.1-SNAPSHOT:compile [INFO] | +- com.tencentcloudapi:tencentcloud-sdk-java:jar:3.1.276:compile [INFO] | | +- com.squareup.okio:okio:jar:1.12.0:compile [INFO] | | +- com.squareup.okhttp:okhttp:jar:2.5.0:compile [INFO] | | +- com.google.code.gson:gson:jar:2.2.4:compile [INFO] | | +- javax.xml.bind:jaxb-api:jar:2.3.0:compile [INFO] | | - com.squareup.okhttp:logging-interceptor:jar:2.7.5:compile [INFO] | - com.github.wechatpay-apiv3:wechatpay-java:jar:0.2.10:compile [INFO] | - com.github.wechatpay-apiv3:wechatpay-java-core:jar:0.2.10:compile [INFO] | - com.squareup.okhttp3:okhttp:jar:4.10.0:runtime [INFO] | +- com.squareup.okio:okio-jvm:jar:3.0.0:runtime [INFO] | | +- org.jetbrains.kotlin:kotlin-stdlib-jdk8:jar:1.5.31:runtime [INFO] | | | - org.jetbrains.kotlin:kotlin-stdlib-jdk7:jar:1.5.31:runtime [INFO] | | - org.jetbrains.kotlin:kotlin-stdlib-common:jar:1.5.31:runtime [INFO] | - org.jetbrains.kotlin:kotlin-stdlib:jar:1.6.20:runtime [INFO] | - org.jetbrains:annotations:jar:13.0:runtime [INFO] +- com.wuyexin:web-base:jar:1.0.0.1-SNAPSHOT:compile [INFO] | +- org.apache.wicket:wicket-core:jar:7.10.0:compile [INFO] | | - org.apache.commons:commons-collections4:jar:4.1:compile [INFO] | +- org.apache.wicket:wicket-util:jar:7.10.0:compile [INFO] | | +- commons-fileupload:commons-fileupload:jar:1.3.2:compile [INFO] | | - commons-io:commons-io:jar:2.5:compile [INFO] | +- org.apache.wicket:wicket-request:jar:7.10.0:compile [INFO] | +- org.apache.wicket:wicket-extensions:jar:7.10.0:compile [INFO] | +- org.apache.wicket:wicket-devutils:jar:7.10.0:compile [INFO] | +- org.apache.wicket:wicket-datetime:jar:7.10.0:compile [INFO] | +- org.apache.wicket:wicket-auth-roles:jar:7.10.0:compile [INFO] | +- org.apache.wicket:wicket-ioc:jar:7.10.0:compile [INFO] | | +- cglib:cglib:jar:3.1:compile [INFO] | | +- javax.inject:javax.inject:jar:1:compile [INFO] | | - org.ow2.asm:asm-util:jar:5.0.3:compile [INFO] | | - org.ow2.asm:asm-tree:jar:5.0.3:compile [INFO] | | - org.ow2.asm:asm:jar:5.0.3:compile [INFO] | +- org.apache.wicket:wicket-guice:jar:7.10.0:compile [INFO] | | - com.google.inject:guice:jar:4.0:compile [INFO] | +- org.apache.wicket:wicket-bean-validation:jar:7.10.0:compile [INFO] | +- com.octo.captcha:jcaptcha:jar:2.0-alpha-1:compile [INFO] | +- com.octo.captcha:jcaptcha-api:jar:2.0-alpha-1:compile [INFO] | - com.jhlabs:filters:jar:2.0.235:compile [INFO] +- com.wuyexin:web-rest:jar:classes:1.0.0.1-SNAPSHOT:compile [INFO] | - javax.servlet:javax.servlet-api:jar:3.1.0:provided [INFO] +- org.eclipse.jetty:jetty-webapp:jar:9.4.9.v20180320:test [INFO] | +- org.eclipse.jetty:jetty-xml:jar:9.4.9.v20180320:test [INFO] | - org.eclipse.jetty:jetty-servlet:jar:9.4.9.v20180320:test [INFO] | - org.eclipse.jetty:jetty-security:jar:9.4.9.v20180320:test [INFO] | - org.eclipse.jetty:jetty-server:jar:9.4.9.v20180320:provided [INFO] | +- org.eclipse.jetty:jetty-http:jar:9.4.9.v20180320:provided [INFO] | - org.eclipse.jetty:jetty-io:jar:9.4.9.v20180320:provided [INFO] +- org.eclipse.jetty:jetty-util:jar:9.4.9.v20180320:test [INFO] +- org.eclipse.jetty:jetty-jmx:jar:9.4.9.v20180320:test [INFO] +- ch.qos.logback:logback-classic:jar:1.1.7:compile [INFO] | +- ch.qos.logback:logback-core:jar:1.1.7:compile [INFO] | - org.slf4j:slf4j-api:jar:1.7.20:compile [INFO] +- junit:junit:jar:4.11:compile [INFO] | - org.hamcrest:hamcrest-core:jar:1.3:compile [INFO] +- com.google.guava:guava:jar:18.0:compile [INFO] +- org.apache.commons:commons-lang3:jar:3.3.2:compile [INFO] +- org.apache.commons:commons-jexl:jar:2.1.1:compile [INFO] | - commons-logging:commons-logging:jar:1.1.1:compile [INFO] +- commons-beanutils:commons-beanutils:jar:1.9.2:compile [INFO] | - commons-collections:commons-collections:jar:3.2.1:compile [INFO] +- commons-codec:commons-codec:jar:1.10:compile [INFO] +- joda-time:joda-time:jar:2.7:compile [INFO] +- org.apache.commons:commons-email:jar:1.3.3:compile [INFO] | +- javax.mail:mail:jar:1.4.5:compile [INFO] | - javax.activation:activation:jar:1.1.1:compile [INFO] +- org.apache.commons:commons-csv:jar:1.1:compile [INFO] +- com.alipay.sdk:alipay-sdk-java:jar:3.7.26.ALL:compile [INFO] +- com.sunline:sign:jar:1.0:compile [INFO] - com.bankofchangsha:open-api-sdk-java:jar:1.0:compile [INFO] [INFO] -----------------------< com.wuyexin:web-client >----------------------- [INFO] Building web-client 1.0.0.1-SNAPSHOT [12/12] [INFO] --------------------------------[ war ]--------------------------------- [INFO] [INFO] --- maven-dependency-plugin:2.8:tree (default-cli) @ web-client --- [INFO] com.wuyexin:web-client:war:1.0.0.1-SNAPSHOT [INFO] +- com.wuyexin:tasks:jar:1.0.0.1-SNAPSHOT:compile [INFO] | +- com.wuyexin:common-service:jar:1.0.0.1-SNAPSHOT:compile [INFO] | | +- com.wuyexin:code-base:jar:1.0.0.1-SNAPSHOT:compile [INFO] | | | +- org.freemarker:freemarker:jar:2.3.20:compile [INFO] | | | +- net.sf.jxls:jxls-core:jar:1.0.5:compile [INFO] | | | | +- commons-digester:commons-digester:jar:2.0:compile [INFO] | | | | +- org.apache.poi:poi:jar:3.9:compile [INFO] | | | | - org.apache.poi:poi-ooxml:jar:3.9:compile [INFO] | | | | +- org.apache.poi:poi-ooxml-schemas:jar:3.9:compile [INFO] | | | | | - org.apache.xmlbeans:xmlbeans:jar:2.3.0:compile [INFO] | | | | | - stax:stax-api:jar:1.0.1:compile [INFO] | | | | - dom4j:dom4j:jar:1.6.1:compile [INFO] | | | | - xml-apis:xml-apis:jar:1.0.b2:compile [INFO] | | | +- net.sf.jxls:jxls-reader:jar:1.0.5:compile [INFO] | | | +- org.mybatis:mybatis:jar:3.2.7:compile [INFO] | | | +- org.mybatis:mybatis-guice:jar:3.6:compile [INFO] | | | +- org.hibernate:hibernate-validator:jar:4.3.1.Final:compile [INFO] | | | | +- javax.validation:validation-api:jar:1.0.0.GA:compile [INFO] | | | | - org.jboss.logging:jboss-logging:jar:3.1.0.CR2:compile [INFO] | | | +- mysql:mysql-connector-java:jar:5.1.30:compile [INFO] | | | +- org.wicketstuff:wicketstuff-restannotations:jar:7.10.0:compile [INFO] | | | +- org.wicketstuff:wicketstuff-restannotations-json:jar:7.10.0:compile [INFO] | | | +- org.apache.httpcomponents:httpclient:jar:4.5.1:compile [INFO] | | | | - org.apache.httpcomponents:httpcore:jar:4.4.3:compile [INFO] | | | +- org.apache.logging.log4j:log4j-api:jar:2.7:compile [INFO] | | | +- org.apache.logging.log4j:log4j-core:jar:2.7:compile [INFO] | | | +- com.itextpdf:itextpdf:jar:5.5.10:compile [INFO] | | | +- com.itextpdf.tool:xmlworker:jar:5.5.10:compile [INFO] | | | +- org.codehaus.groovy:groovy-all:jar:2.4.12:compile [INFO] | | | - net.sourceforge.javacsv:javacsv:jar:2.0:compile [INFO] | | +- org.elasticsearch.client:transport:jar:5.1.1:compile [INFO] | | | +- org.elasticsearch:elasticsearch:jar:5.1.1:compile [INFO] | | | | +- org.apache.lucene:lucene-core:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-analyzers-common:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-backward-codecs:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-grouping:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-highlighter:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-join:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-memory:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-misc:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-queries:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-queryparser:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-sandbox:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-spatial:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-spatial-extras:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-spatial3d:jar:6.3.0:compile [INFO] | | | | +- org.apache.lucene:lucene-suggest:jar:6.3.0:compile [INFO] | | | | +- org.elasticsearch:securesm:jar:1.1:compile [INFO] | | | | +- net.sf.jopt-simple:jopt-simple:jar:5.0.2:compile [INFO] | | | | +- com.carrotsearch:hppc:jar:0.7.1:compile [INFO] | | | | +- org.yaml:snakeyaml:jar:1.15:compile [INFO] | | | | +- com.fasterxml.jackson.dataformat:jackson-dataformat-smile:jar:2.8.1:compile [INFO] | | | | +- com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:jar:2.8.1:compile [INFO] | | | | +- com.tdunning:t-digest:jar:3.0:compile [INFO] | | | | +- org.hdrhistogram:HdrHistogram:jar:2.1.6:compile [INFO] | | | | - net.java.dev.jna:jna:jar:4.2.2:compile [INFO] | | | +- org.elasticsearch.plugin:transport-netty3-client:jar:5.1.1:compile [INFO] | | | | - io.netty:netty:jar:3.10.6.Final:compile [INFO] | | | +- org.elasticsearch.plugin:transport-netty4-client:jar:5.1.1:compile [INFO] | | | | +- io.netty:netty-codec-http:jar:4.1.6.Final:compile [INFO] | | | | - io.netty:netty-resolver:jar:4.1.6.Final:compile [INFO] | | | +- org.elasticsearch.plugin:reindex-client:jar:5.1.1:compile [INFO] | | | | - org.elasticsearch.client:rest:jar:5.1.1:compile [INFO] | | | | +- org.apache.httpcomponents:httpasyncclient:jar:4.1.2:compile [INFO] | | | | - org.apache.httpcomponents:httpcore-nio:jar:4.4.5:compile [INFO] | | | +- org.elasticsearch.plugin:lang-mustache-client:jar:5.1.1:compile [INFO] | | | | - com.github.spullara.mustache.java:compiler:jar:0.9.3:compile [INFO] | | | - org.elasticsearch.plugin:percolator-client:jar:5.1.1:compile [INFO] | | +- redis.clients:jedis:jar:2.9.0:compile [INFO] | | | - org.apache.commons:commons-pool2:jar:2.4.2:compile [INFO] | | +- org.redisson:redisson:jar:3.3.2:compile [INFO] | | | +- io.netty:netty-common:jar:4.1.8.Final:compile [INFO] | | | +- io.netty:netty-codec:jar:4.1.8.Final:compile [INFO] | | | +- io.netty:netty-buffer:jar:4.1.8.Final:compile [INFO] | | | +- io.netty:netty-transport:jar:4.1.8.Final:compile [INFO] | | | +- io.netty:netty-handler:jar:4.1.8.Final:compile [INFO] | | | +- javax.cache:cache-api:jar:1.0.0:compile [INFO] | | | +- io.projectreactor:reactor-stream:jar:2.0.8.RELEASE:compile [INFO] | | | | - io.projectreactor:reactor-core:jar:2.0.8.RELEASE:compile [INFO] | | | | - org.reactivestreams:reactive-streams:jar:1.0.0:compile [INFO] | | | +- com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:jar:2.8.7:compile [INFO] | | | +- com.fasterxml.jackson.core:jackson-core:jar:2.8.7:compile [INFO] | | | - com.fasterxml.jackson.core:jackson-databind:jar:2.8.7:compile [INFO] | | | - com.fasterxml.jackson.core:jackson-annotations:jar:2.8.0:compile [INFO] | | +- de.ruedigermoeller:fst:jar:2.50:compile [INFO] | | | +- org.javassist:javassist:jar:3.21.0-GA:compile [INFO] | | | +- org.objenesis:objenesis:jar:2.5.1:compile [INFO] | | | - com.cedarsoftware:java-util:jar:1.9.0:compile [INFO] | | | - com.cedarsoftware:json-io:jar:2.5.1:compile [INFO] | | +- aopalliance:aopalliance:jar:1.0:compile [INFO] | | - io.jsonwebtoken:jjwt:jar:0.7.0:compile [INFO] | - com.wuyexin:service-business-service:jar:1.0.0.1-SNAPSHOT:compile [INFO] | +- com.wuyexin:service-business-model:jar:1.0.0.1-SNAPSHOT:compile [INFO] | | - com.wuyexin:data-persistence:jar:1.0.0.1-SNAPSHOT:compile [INFO] | +- com.tencentcloudapi:tencentcloud-sdk-java:jar:3.1.276:compile [INFO] | | +- com.squareup.okio:okio:jar:1.12.0:compile [INFO] | | +- com.squareup.okhttp:okhttp:jar:2.5.0:compile [INFO] | | +- com.google.code.gson:gson:jar:2.2.4:compile [INFO] | | +- javax.xml.bind:jaxb-api:jar:2.3.0:compile [INFO] | | - com.squareup.okhttp:logging-interceptor:jar:2.7.5:compile [INFO] | - com.github.wechatpay-apiv3:wechatpay-java:jar:0.2.10:compile [INFO] | - com.github.wechatpay-apiv3:wechatpay-java-core:jar:0.2.10:compile [INFO] | - com.squareup.okhttp3:okhttp:jar:4.10.0:runtime [INFO] | +- com.squareup.okio:okio-jvm:jar:3.0.0:runtime [INFO] | | +- org.jetbrains.kotlin:kotlin-stdlib-jdk8:jar:1.5.31:runtime [INFO] | | | - org.jetbrains.kotlin:kotlin-stdlib-jdk7:jar:1.5.31:runtime [INFO] | | - org.jetbrains.kotlin:kotlin-stdlib-common:jar:1.5.31:runtime [INFO] | - org.jetbrains.kotlin:kotlin-stdlib:jar:1.6.20:runtime [INFO] | - org.jetbrains:annotations:jar:13.0:runtime [INFO] +- com.wuyexin:web-base:jar:1.0.0.1-SNAPSHOT:compile [INFO] | +- org.apache.wicket:wicket-core:jar:7.10.0:compile [INFO] | | - org.apache.commons:commons-collections4:jar:4.1:compile [INFO] | +- org.apache.wicket:wicket-util:jar:7.10.0:compile [INFO] | | +- commons-fileupload:commons-fileupload:jar:1.3.2:compile [INFO] | | - commons-io:commons-io:jar:2.5:compile [INFO] | +- org.apache.wicket:wicket-request:jar:7.10.0:compile [INFO] | +- org.apache.wicket:wicket-extensions:jar:7.10.0:compile [INFO] | +- org.apache.wicket:wicket-devutils:jar:7.10.0:compile [INFO] | +- org.apache.wicket:wicket-datetime:jar:7.10.0:compile [INFO] | +- org.apache.wicket:wicket-auth-roles:jar:7.10.0:compile [INFO] | +- org.apache.wicket:wicket-ioc:jar:7.10.0:compile [INFO] | | +- cglib:cglib:jar:3.1:compile [INFO] | | +- javax.inject:javax.inject:jar:1:compile [INFO] | | - org.ow2.asm:asm-util:jar:5.0.3:compile [INFO] | | - org.ow2.asm:asm-tree:jar:5.0.3:compile [INFO] | | - org.ow2.asm:asm:jar:5.0.3:compile [INFO] | +- org.apache.wicket:wicket-guice:jar:7.10.0:compile [INFO] | | - com.google.inject:guice:jar:4.0:compile [INFO] | +- org.apache.wicket:wicket-bean-validation:jar:7.10.0:compile [INFO] | +- com.octo.captcha:jcaptcha:jar:2.0-alpha-1:compile [INFO] | +- com.octo.captcha:jcaptcha-api:jar:2.0-alpha-1:compile [INFO] | - com.jhlabs:filters:jar:2.0.235:compile [INFO] +- com.wuyexin:web-view:jar:classes:1.0.0.1-SNAPSHOT:compile [INFO] | - com.wuyexin:web-rest:jar:classes:1.0.0.1-SNAPSHOT:compile [INFO] | - javax.servlet:javax.servlet-api:jar:3.1.0:provided [INFO] +- org.eclipse.jetty:jetty-webapp:jar:9.4.9.v20180320:test [INFO] | +- org.eclipse.jetty:jetty-xml:jar:9.4.9.v20180320:test [INFO] | - org.eclipse.jetty:jetty-servlet:jar:9.4.9.v20180320:test [INFO] | - org.eclipse.jetty:jetty-security:jar:9.4.9.v20180320:test [INFO] | - org.eclipse.jetty:jetty-server:jar:9.4.9.v20180320:provided [INFO] | +- org.eclipse.jetty:jetty-http:jar:9.4.9.v20180320:provided [INFO] | - org.eclipse.jetty:jetty-io:jar:9.4.9.v20180320:provided [INFO] +- org.eclipse.jetty:jetty-util:jar:9.4.9.v20180320:test [INFO] +- org.eclipse.jetty:jetty-jmx:jar:9.4.9.v20180320:test [INFO] +- ch.qos.logback:logback-classic:jar:1.1.7:compile [INFO] | +- ch.qos.logback:logback-core:jar:1.1.7:compile [INFO] | - org.slf4j:slf4j-api:jar:1.7.20:compile [INFO] +- junit:junit:jar:4.11:compile [INFO] | - org.hamcrest:hamcrest-core:jar:1.3:compile [INFO] +- com.google.guava:guava:jar:18.0:compile [INFO] +- org.apache.commons:commons-lang3:jar:3.3.2:compile [INFO] +- org.apache.commons:commons-jexl:jar:2.1.1:compile [INFO] | - commons-logging:commons-logging:jar:1.1.1:compile [INFO] +- commons-beanutils:commons-beanutils:jar:1.9.2:compile [INFO] | - commons-collections:commons-collections:jar:3.2.1:compile [INFO] +- commons-codec:commons-codec:jar:1.10:compile [INFO] +- joda-time:joda-time:jar:2.7:compile [INFO] +- org.apache.commons:commons-email:jar:1.3.3:compile [INFO] | +- javax.mail:mail:jar:1.4.5:compile [INFO] | - javax.activation:activation:jar:1.1.1:compile [INFO] +- org.apache.commons:commons-csv:jar:1.1:compile [INFO] +- com.alipay.sdk:alipay-sdk-java:jar:3.7.26.ALL:compile [INFO] +- com.sunline:sign:jar:1.0:compile [INFO] - com.bankofchangsha:open-api-sdk-java:jar:1.0:compile [INFO] ------------------------------------------------------------------------ [INFO] Reactor Summary for wyx 1.0.0.1-SNAPSHOT: [INFO] [INFO] wyx ................................................ SUCCESS [ 26.156 s] [INFO] code-base .......................................... SUCCESS [ 0.242 s] [INFO] code-generator ..................................... SUCCESS [ 0.151 s] [INFO] common-service ..................................... SUCCESS [ 0.344 s] [INFO] data-persistence ................................... SUCCESS [ 0.061 s] [INFO] service-business-model ............................. SUCCESS [ 0.069 s] [INFO] service-business-service ........................... SUCCESS [ 0.139 s] [INFO] tasks .............................................. SUCCESS [ 0.097 s] [INFO] web-base ........................................... SUCCESS [ 0.107 s] [INFO] web-rest ........................................... SUCCESS [ 0.089 s] [INFO] web-view ........................................... SUCCESS [ 0.133 s] [INFO] web-client ......................................... SUCCESS [ 0.104 s] [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 28.177 s [INFO] Finished at: 2023-07-20T11:25:02+08:00 [INFO] --------------------------------------------------------------------

你看看,貌似没有版本冲突

xy-peng commented 1 year ago

只有 compile-time 的依赖,试试

<dependency>
  <groupId>com.github.wechatpay-apiv3</groupId>
  <artifactId>wechatpay-java</artifactId>
  <version>0.2.10</version>
  <scope>runtime</scope>
</dependency>
AlanTang2416 commented 1 year ago

但是这样的话,代码只能够对于类的import是飘红的,编译都不能过

xy-peng commented 1 year ago

抱歉,对于 maven 不是很熟,请问你的运行时是否包含了我们库?你是如何运行程序的?通过 IDE 还是命令行?

AlanTang2416 commented 1 year ago

抱歉,对于 maven 不是很熟,请问你的运行时是否包含了我们库?你是如何运行程序的?通过 IDE 还是命令行?

maven依赖了,编写代码,没有问题,编译后自动发布到测试服务器,postman调用接口,如果过把maven依赖改为runtime,那编译都通过不了,别说发布了

xy-peng commented 1 year ago

我查看文档了解到,maven 默认不会把依赖的包打包到生成的 jar 里。你是否把 wechatpay-java 的包发布到服务器的 classpath ?

之前我误以为加上 runtime 会让 maven 打包到一起,可以忽略之前的建议。

AlanTang2416 commented 1 year ago

我查看文档了解到,maven 默认不会把依赖的包打包到生成的 jar 里。你是否把 wechatpay-java 的包发布到服务器的 classpath ?

之前我误以为加上 runtime 会让 maven 打包到一起,可以忽略之前的建议。

我想问一下,微信支付平台证书(wechatPayCertificate)是不是需要另外再下载?

AlanTang2416 commented 1 year ago

已经解决了,因为项目里面依赖了腾讯云的sdk,然而这个sdk里面包含的okhttp版本比较低,不是okhttp3,所以maven吹依赖冲突一直都是用的旧的okhttp版本,导致DefaultHttpClientBuilder里面的import失败,升级了腾讯云的sdk最新版本就好了,多谢[xy-peng]大佬