[JBoss JIRA] (WFLY-9348) Remove unnecessary port="0" from subsystem templates defining a multicast socket binding
by Radoslav Husar (JIRA)
[ https://issues.jboss.org/browse/WFLY-9348?page=com.atlassian.jira.plugin.... ]
Radoslav Husar updated WFLY-9348:
---------------------------------
Description: The port is optional and defaults to 0; since it's never used in these 2 bindings it should be removed from the default configuration. (was: The port is optional and defaults to 0; since it's never used in these 2 bindings it should be dropped from the default configuration. )
> Remove unnecessary port="0" from subsystem templates defining a multicast socket binding
> ----------------------------------------------------------------------------------------
>
> Key: WFLY-9348
> URL: https://issues.jboss.org/browse/WFLY-9348
> Project: WildFly
> Issue Type: Bug
> Components: Clustering, mod_cluster
> Affects Versions: 11.0.0.CR1
> Reporter: Radoslav Husar
> Assignee: Radoslav Husar
> Priority: Minor
>
> The port is optional and defaults to 0; since it's never used in these 2 bindings it should be removed from the default configuration.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 9 months
[JBoss JIRA] (JGRP-2218) New payload interface
by Bela Ban (JIRA)
[ https://issues.jboss.org/browse/JGRP-2218?page=com.atlassian.jira.plugin.... ]
Bela Ban commented on JGRP-2218:
--------------------------------
[~dan.berindei] Actually, I take back what I said on {{size()}}: some protocols such as {{FRAG2}} need the size to be more or less exact, to determine whether or not to fragement the message!
If {{size()}} returns a number that's less than what's actually serialized later, the transport may fail to send the message, e.g. when using UDP the datagram packet might be bigger than the max datagram size (65K). If greater, there may be unnecessary fragmentation, but this latter case would at least not cause messages to get dropped.
So the way things look, you'd have to implement {{size()}} to use {{ObjectPayload}} or do eager marshalling and use {{ByteArrayPayload}}. But aren't you already able to get the size, ie. IIRC you do implemnt {{Marshaller.estimatedSize(Object)}}, don't you?
> New payload interface
> ---------------------
>
> Key: JGRP-2218
> URL: https://issues.jboss.org/browse/JGRP-2218
> Project: JGroups
> Issue Type: Feature Request
> Reporter: Bela Ban
> Assignee: Bela Ban
> Fix For: 5.0
>
>
> h3. Goal
> Change payload in {{Message}} from byte[] arrays to a {{Payload}} interface which can have multiple implementations.
> h3. Reason
> Currently, having to pass a byte[] array to a message leads to unnecessary copying:
> * When an application has a ref to an NIO (direct) {{ByteBuffer}}, the bytes in the byte buffer have to be copied into a byte[] array and then set in the message
> * When the application sends around byte[] arrays, but also wants to add some additional metadata, e.g. type (1000-byte requests/responses), it needs to create a new byte[] array of (say) 1001 bytes and copy the data (1000 bytes) plus the request type (1 byte) into the new copy. Example: {{MPerf}} and {{UPerf}}
> * When an object has to be sent (e.g. in Infinispan), the object has to be marshalled into a byte[] array (first allocation) and then added to the message. With the suggested {{ObjectPayload}} (below), marshalling of the object would occur late, and it would be marshalled directly into the output stream of the bundler, eliminating the byte[] array allocation made by the application.
> h3. Design
> Instead of copying, the application creates an instance of {{Payload}} and sets the payload in {{Message}}. The {{Payload}} is then passed all the way down into the transport where it is marshalled and sent. There can be a number of payload implementations, e.g.
> * {{ByteArrayPayload}}: wraps a byte[] array with an offset and length
> * {{NioDirectPayload}}: wraps an NIO direct {{ByteBuffer}}
> * {{NioHeapPayload}}: wraps an NIO heap-based {{ByteBuffer}}
> * {{CompositePayload}}: wraps multiple Buffers. E.g. type (1 byte) and data (1000 bytes) as described above
> * {{IntPayload}}: a single integer
> * {{ObjectPayload}}: has an Object and a ClassLoader (for reading), plus a Marshaller which know how to marshal the object, this allows for objects to be passed in payloads and they're only marshalled at the end (transport).
> * {{PartialPayload}}: a ref to a {{Payload}}, with an offset and length
> The {{Payload}} interface has methods:
> * {{size()}}
> * {{writeTo(DataOutput)}}
> * {{readFrom(DataInput)}}
> * {{getInput()}}: this provides a {{DataInput}} stream for reading from the underlying payload
> and possibly also
> * {{acquire()}} and
> * {{release()}} (for ref-counting)
> * {{copy()}}
> Each payload impl has an ID and it should be possible to register new impls. A {{PayloadFactory}} maintains a mapping between IDs and impl classes.
> When marshalling a {{Payload}}, the ID is written first, followed by the payload's {{writeTo()}} method. When reading payloads, the {{PayloadFactory}} is used to create instances from IDs.
> h4. Fragmentation
> When fragmenting a buffer, the fragments are instances of {{PartialPayload}} which maintains an offset and length over an underlying payload. When marshalling a {{PartialPayload}}, only the part between offset and offset+length is written to the output stream.
> h4. Reference counting
> If we implement ref-counting, then payloads can be reused as soon as the ref-count is 0. For example, when sending a message, the payload's ref-count could be incremented by the app calling {{acquire()}}. (Assuming the message is a unicast message), {{UNICAST3}} would increment the count to 2. This is needed because {{UNICAST3}} might have to retransmit the message if it was lost on the network, and meanwhile the payload cannot be reused (changed). The app calls {{release()}} when the {{JChannel.send()}} call returns, but the payload cannot be reused until {{UNICAST3}} calls {{release()}} as well. This will happen when an {{ACK}} for the given message has been received.
> h4. Payload factory
> When a request is received, the buffer is created from the bytes received on the network, based on the ID. This should be done by asking a {{PayloadFactory}} component for a new buffer. A naive implementation might create a new buffer every time, and more sophisticated one might use a pool of payloads.
> The {{PayloadFactory}} instance could be replaced by one's own implementation; this allows for an application to control the lifecycle of payloads: thus the creation of buffers by the application and of payloads received over the network can be controlled by the same payload management impl.
> h4. Symmetry
> When sending a {{CompositePayload}} of a 500 byte {{ByteArrayPayload}} and a 1000 byte {{NioDirectPayload}}, would we want to also get the same {{CompositePayload}} consisting of 2 payloads on the receiver side, or would we want to combine the 2 payloads into one and make the 2 payloads refer to the same combined byte[] array (or NIO buffer)? Should this be made configurable?
> h4. Misc
> * Since this issue includes API changes, the version will be 5.0
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 9 months
[JBoss JIRA] (DROOLS-1728) There is always HTTP 404 Error Where I request the maven2 in workbench
by HuiYu Zhou (JIRA)
[ https://issues.jboss.org/browse/DROOLS-1728?page=com.atlassian.jira.plugi... ]
HuiYu Zhou commented on DROOLS-1728:
------------------------------------
I copy the full log as bottom following, I think the LATEST is already supported because it download my latest jar file.
source code as following:
=========================================================
KieServices ks = KieServices.Factory.get();
KieContainer kContainer = ks.newKieContainer(ks.newReleaseId("com.myteam", "Project1", "LATEST"));
KieScanner kieScanner = ks.newKieScanner(kContainer);
kieScanner.start(30000L);
=========================================================
slf4j-log4j12-1.7.25.jar com.mininglamp.main.TestRemoteScannerMain
objc[36177]: Class JavaLaunchHelper is implemented in both /Library/Java/JavaVirtualMachines/jdk1.8.0_121.jdk/Contents/Home/bin/java and /Library/Java/JavaVirtualMachines/jdk1.8.0_121.jdk/Contents/Home/jre/lib/libinstrument.dylib. One of the two will be used. Which one is undefined.
2017-09-15 17:13:14 INFO [org.kie.api.internal.utils.ServiceDiscoveryImpl] Loading kie.conf from
2017-09-15 17:13:14 INFO [org.kie.api.internal.utils.ServiceDiscoveryImpl] Discovered kie.conf url=jar:file:/Users/zhouhuiyu/Documents/project/%e4%ba%a4%e9%80%9a%e9%93%b6%e8%a1%8c/mydrools/target/testserv-1.0-SNAPSHOT.jar!/META-INF/kie.conf
2017-09-15 17:13:14 INFO [org.kie.api.internal.utils.ServiceDiscoveryImpl] Adding Service com.my.drools.impl.TestDroolsServiceImpl
2017-09-15 17:13:14 INFO [org.kie.api.internal.utils.ServiceDiscoveryImpl] Loading kie.conf from
2017-09-15 17:13:14 INFO [org.kie.api.internal.utils.ServiceDiscoveryImpl] Discovered kie.conf url=jar:file:/Users/zhouhuiyu/.m2/repository/org/drools/drools-core/7.2.0.Final/drools-core-7.2.0.Final.jar!/META-INF/kie.conf
2017-09-15 17:13:14 INFO [org.kie.api.internal.utils.ServiceDiscoveryImpl] Adding Service org.drools.core.io.impl.ResourceFactoryServiceImpl
2017-09-15 17:13:15 INFO [org.kie.api.internal.utils.ServiceDiscoveryImpl] Adding Service org.drools.core.marshalling.impl.MarshallerProviderImpl
2017-09-15 17:13:15 INFO [org.kie.api.internal.utils.ServiceDiscoveryImpl] Adding Service org.drools.core.concurrent.ExecutorProviderImpl
2017-09-15 17:13:15 INFO [org.kie.api.internal.utils.ServiceDiscoveryImpl] Loading kie.conf from
2017-09-15 17:13:15 INFO [org.kie.api.internal.utils.ServiceDiscoveryImpl] Discovered kie.conf url=jar:file:/Users/zhouhuiyu/.m2/repository/org/drools/drools-compiler/7.2.0.Final/drools-compiler-7.2.0.Final.jar!/META-INF/kie.conf
2017-09-15 17:13:15 INFO [org.kie.api.internal.utils.ServiceDiscoveryImpl] Adding Service org.drools.compiler.kie.builder.impl.KieServicesImpl
2017-09-15 17:13:15 INFO [org.kie.api.internal.utils.ServiceDiscoveryImpl] Adding Service org.drools.compiler.builder.impl.KnowledgeBuilderFactoryServiceImpl
2017-09-15 17:13:15 INFO [org.kie.api.internal.utils.ServiceDiscoveryImpl] Loading kie.conf from
2017-09-15 17:13:15 INFO [org.kie.api.internal.utils.ServiceDiscoveryImpl] Discovered kie.conf url=jar:file:/Users/zhouhuiyu/.m2/repository/org/drools/drools-decisiontables/7.2.0.Final/drools-decisiontables-7.2.0.Final.jar!/META-INF/kie.conf
2017-09-15 17:13:15 INFO [org.kie.api.internal.utils.ServiceDiscoveryImpl] Adding Service org.drools.decisiontable.DecisionTableProviderImpl
2017-09-15 17:13:15 INFO [org.kie.api.internal.utils.ServiceDiscoveryImpl] Loading kie.conf from
2017-09-15 17:13:15 INFO [org.kie.api.internal.utils.ServiceDiscoveryImpl] Discovered kie.conf url=jar:file:/Users/zhouhuiyu/.m2/repository/org/kie/kie-internal/7.2.0.Final/kie-internal-7.2.0.Final.jar!/META-INF/kie.conf
2017-09-15 17:13:15 INFO [org.kie.api.internal.utils.ServiceDiscoveryImpl] Adding Service org.kie.internal.services.KieWeaversImpl
2017-09-15 17:13:15 INFO [org.kie.api.internal.utils.ServiceDiscoveryImpl] Adding Service org.kie.internal.services.KieBeliefsImpl
2017-09-15 17:13:15 INFO [org.kie.api.internal.utils.ServiceDiscoveryImpl] Adding Service org.kie.internal.services.KieAssemblersImpl
2017-09-15 17:13:15 INFO [org.kie.api.internal.utils.ServiceDiscoveryImpl] Adding Service org.kie.internal.services.KieRuntimesImpl
2017-09-15 17:13:15 INFO [org.kie.api.internal.utils.ServiceDiscoveryImpl] Loading kie.conf from
2017-09-15 17:13:15 INFO [org.kie.api.internal.utils.ServiceDiscoveryImpl] Discovered kie.conf url=jar:file:/Users/zhouhuiyu/.m2/repository/org/kie/kie-ci/7.2.0.Final/kie-ci-7.2.0.Final.jar!/META-INF/kie.conf
2017-09-15 17:13:15 INFO [org.kie.api.internal.utils.ServiceDiscoveryImpl] Adding Service org.kie.scanner.KieScannerFactoryServiceImpl
2017-09-15 17:13:15 INFO [org.kie.api.internal.utils.ServiceDiscoveryImpl] Adding Service org.kie.scanner.MavenClassLoaderResolver
2017-09-15 17:13:15 DEBUG [org.drools.compiler.kie.builder.impl.KieRepositoryImpl] KieModule Lookup. ReleaseId com.myteam:Project1:LATEST was not in cache, checking classpath
2017-09-15 17:13:15 DEBUG [org.drools.compiler.kie.builder.impl.KieRepositoryImpl] KieModule Lookup. ReleaseId com.myteam:Project1:LATEST was not in cache, checking maven repository
2017-09-15 17:13:15 DEBUG [org.appformer.maven.integration.embedder.MavenEmbedderUtils] Not in OSGi: using plexus based maven parser
2017-09-15 17:13:16 DEBUG [org.eclipse.aether.internal.impl.DefaultLocalRepositoryProvider] Using manager EnhancedLocalRepositoryManager with priority 10.0 for /Users/zhouhuiyu/.m2/repository
2017-09-15 17:13:16 DEBUG [org.eclipse.aether.internal.impl.DefaultLocalRepositoryProvider] Using manager EnhancedLocalRepositoryManager with priority 10.0 for /Users/zhouhuiyu/.m2/repository
2017-09-15 17:13:16 DEBUG [org.eclipse.aether.internal.impl.DefaultLocalRepositoryProvider] Using manager EnhancedLocalRepositoryManager with priority 10.0 for /Users/zhouhuiyu/.m2/repository
2017-09-15 17:13:16 DEBUG [org.eclipse.aether.internal.impl.DefaultTransporterProvider] Using transporter HttpTransporter with priority 5.0 for https://repo.maven.apache.org/maven2
2017-09-15 17:13:16 DEBUG [org.eclipse.aether.internal.impl.DefaultTransporterProvider] Using transporter HttpTransporter with priority 5.0 for http://repo1.maven.org/maven2/
2017-09-15 17:13:16 DEBUG [org.eclipse.aether.internal.impl.DefaultTransporterProvider] Using transporter HttpTransporter with priority 5.0 for http://192.168.56.101:8080/kie-drools-wb/maven2/
2017-09-15 17:13:16 DEBUG [org.eclipse.aether.internal.impl.DefaultRepositoryConnectorProvider] Using connector BasicRepositoryConnector with priority 0.0 for https://repo.maven.apache.org/maven2
2017-09-15 17:13:16 DEBUG [org.eclipse.aether.internal.impl.DefaultRepositoryConnectorProvider] Using connector BasicRepositoryConnector with priority 0.0 for http://192.168.56.101:8080/kie-drools-wb/maven2/ with username=tomcat, password=***
2017-09-15 17:13:16 DEBUG [org.eclipse.aether.internal.impl.DefaultRepositoryConnectorProvider] Using connector BasicRepositoryConnector with priority 0.0 for http://repo1.maven.org/maven2/
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection request: [route: {}->http://repo1.maven.org][total kept alive: 0; route allocated: 0 of 50; total allocated: 0 of 100]
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection request: [route: {s}->https://repo.maven.apache.org][total kept alive: 0; route allocated: 0 of 50; total allocated: 0 of 100]
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection request: [route: {}->http://192.168.56.101:8080][total kept alive: 0; route allocated: 0 of 50; total allocated: 0 of 100]
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection leased: [id: 0][route: {}->http://192.168.56.101:8080][total kept alive: 0; route allocated: 1 of 50; total allocated: 1 of 100]
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection leased: [id: 1][route: {s}->https://repo.maven.apache.org][total kept alive: 0; route allocated: 1 of 50; total allocated: 1 of 100]
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection leased: [id: 2][route: {}->http://repo1.maven.org][total kept alive: 0; route allocated: 1 of 50; total allocated: 1 of 100]
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.conn.DefaultClientConnectionOperator] Connecting to 192.168.56.101:8080
2017-09-15 17:13:16 DEBUG [org.apache.http.client.protocol.RequestAddCookies] CookieSpec selected: best-match
2017-09-15 17:13:16 DEBUG [org.apache.http.client.protocol.RequestTargetAuthentication] Target auth state: UNCHALLENGED
2017-09-15 17:13:16 DEBUG [org.apache.http.client.protocol.RequestProxyAuthentication] Proxy auth state: UNCHALLENGED
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Attempt 1 to execute request
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Sending request: GET /kie-drools-wb/maven2/com/myteam/Project1/maven-metadata.xml HTTP/1.1
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] >> "GET /kie-drools-wb/maven2/com/myteam/Project1/maven-metadata.xml HTTP/1.1[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] >> "Cache-Control: no-cache, no-store[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] >> "Pragma: no-cache[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] >> "Accept-Encoding: gzip,deflate[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] >> "Host: 192.168.56.101:8080[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] >> "Connection: Keep-Alive[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] >> "User-Agent: Aether[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] >> "[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] >> GET /kie-drools-wb/maven2/com/myteam/Project1/maven-metadata.xml HTTP/1.1
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] >> Cache-Control: no-cache, no-store
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] >> Pragma: no-cache
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] >> Accept-Encoding: gzip,deflate
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] >> Host: 192.168.56.101:8080
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] >> Connection: Keep-Alive
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] >> User-Agent: Aether
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.conn.DefaultClientConnectionOperator] Connecting to repo.maven.apache.org:443
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "HTTP/1.1 401 [\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "X-FRAME-OPTIONS: SAMEORIGIN[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "X-XSS-Protection: 1; mode=block[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "WWW-Authenticate: Basic realm="KIE Workbench Realm"[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "Content-Type: text/html;charset=utf-8[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "Content-Language: en[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "Content-Length: 1034[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "Date: Fri, 15 Sep 2017 05:15:05 GMT[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Receiving response: HTTP/1.1 401
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << HTTP/1.1 401
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << X-FRAME-OPTIONS: SAMEORIGIN
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << X-XSS-Protection: 1; mode=block
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << WWW-Authenticate: Basic realm="KIE Workbench Realm"
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << Content-Type: text/html;charset=utf-8
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << Content-Language: en
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << Content-Length: 1034
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << Date: Fri, 15 Sep 2017 05:15:05 GMT
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Connection can be kept alive indefinitely
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Authentication required
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.client.DefaultHttpClient] 192.168.56.101:8080 requested authentication
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.client.TargetAuthenticationStrategy] Authentication schemes in the order of preference: [negotiate, Kerberos, NTLM, Digest, Basic]
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.client.TargetAuthenticationStrategy] Challenge for negotiate authentication scheme not available
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.client.TargetAuthenticationStrategy] Challenge for Kerberos authentication scheme not available
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.client.TargetAuthenticationStrategy] Challenge for NTLM authentication scheme not available
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.client.TargetAuthenticationStrategy] Challenge for Digest authentication scheme not available
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.conn.DefaultClientConnectionOperator] Connecting to repo1.maven.org:80
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Selected authentication options: [BASIC]
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "<!doctype html><html lang="en"><head><title>HTTP Status 401 [0xe2][0x80][0x93] Unauthorized</title><style type="text/css">h1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} h2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} h3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} body {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} b {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} p {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;} a {color:black;} a.name {color:black;} .line {height:1px;background-color:#525D76;border:none;}</style></head><body><h1>HTTP Status 401 [0xe2][0x80][0x93] Unauthorized</h1><hr class="line" /><p><b>Type</b> Status Report</p><p><b>Description</b> The request has not been applied because it lacks valid authentication credentials for the target resource.</p><hr class="line" /><h3>Apache Tomcat/8.5.20</h3></body></html>"
2017-09-15 17:13:16 DEBUG [org.apache.http.client.protocol.RequestAddCookies] CookieSpec selected: best-match
2017-09-15 17:13:16 DEBUG [org.apache.http.client.protocol.RequestTargetAuthentication] Target auth state: CHALLENGED
2017-09-15 17:13:16 DEBUG [org.apache.http.client.protocol.RequestTargetAuthentication] Generating response to an authentication challenge using basic scheme
2017-09-15 17:13:16 DEBUG [org.apache.http.client.protocol.RequestProxyAuthentication] Proxy auth state: UNCHALLENGED
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Attempt 2 to execute request
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Sending request: GET /kie-drools-wb/maven2/com/myteam/Project1/maven-metadata.xml HTTP/1.1
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] >> "GET /kie-drools-wb/maven2/com/myteam/Project1/maven-metadata.xml HTTP/1.1[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] >> "Cache-Control: no-cache, no-store[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] >> "Pragma: no-cache[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] >> "Accept-Encoding: gzip,deflate[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] >> "Host: 192.168.56.101:8080[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] >> "Connection: Keep-Alive[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] >> "User-Agent: Aether[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] >> "Authorization: Basic dG9tY2F0OnRvbWNhdA==[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] >> "[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] >> GET /kie-drools-wb/maven2/com/myteam/Project1/maven-metadata.xml HTTP/1.1
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] >> Cache-Control: no-cache, no-store
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] >> Pragma: no-cache
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] >> Accept-Encoding: gzip,deflate
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] >> Host: 192.168.56.101:8080
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] >> Connection: Keep-Alive
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] >> User-Agent: Aether
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] >> Authorization: Basic dG9tY2F0OnRvbWNhdA==
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "HTTP/1.1 200 [\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "Content-Disposition: attachment;filename="maven-metadata.xml"[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "Accept-Ranges: bytes[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "ETag: maven-metadata.xml_546_1505452498000[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "Last-Modified: Fri, 15 Sep 2017 05:14:58 GMT[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "Expires: Fri, 22 Sep 2017 05:15:05 GMT[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "Content-Range: bytes 0-545/546[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "Content-Type: application/xml[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "Content-Length: 546[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "Date: Fri, 15 Sep 2017 05:15:05 GMT[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Receiving response: HTTP/1.1 200
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << HTTP/1.1 200
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << Content-Disposition: attachment;filename="maven-metadata.xml"
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << Accept-Ranges: bytes
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << ETag: maven-metadata.xml_546_1505452498000
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << Last-Modified: Fri, 15 Sep 2017 05:14:58 GMT
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << Expires: Fri, 22 Sep 2017 05:15:05 GMT
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << Content-Range: bytes 0-545/546
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << Content-Type: application/xml
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << Content-Length: 546
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << Date: Fri, 15 Sep 2017 05:15:05 GMT
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Connection can be kept alive indefinitely
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Authentication succeeded
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.client.TargetAuthenticationStrategy] Caching 'basic' auth scheme for http://192.168.56.101:8080
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "<?xml version="1.0" encoding="UTF-8"?>[\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "<metadata>[\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << " <groupId>com.myteam</groupId>[\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << " <artifactId>Project1</artifactId>[\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << " <versioning>[\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << " <release>2.0.4</release>[\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << " <versions>[\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << " <version>1.0.0</version>[\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << " <version>1.0.1</version>[\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << " <version>1.0.3</version>[\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << " <version>1.0.4</version>[\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << " <version>2.0.0</version>[\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << " <version>2.0.1</version>[\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << " <version>2.0.2</version>[\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << " <version>2.0.3</version>[\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << " <version>2.0.4</version>[\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << " </versions>[\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << " <lastUpdated>20170915051458</lastUpdated>[\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << " </versioning>[\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "</metadata>[\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection [id: 0][route: {}->http://192.168.56.101:8080] can be kept alive indefinitely
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection released: [id: 0][route: {}->http://192.168.56.101:8080][total kept alive: 1; route allocated: 1 of 50; total allocated: 1 of 100]
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection request: [route: {}->http://192.168.56.101:8080][total kept alive: 1; route allocated: 1 of 50; total allocated: 1 of 100]
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection leased: [id: 0][route: {}->http://192.168.56.101:8080][total kept alive: 0; route allocated: 1 of 50; total allocated: 1 of 100]
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Stale connection check
2017-09-15 17:13:16 DEBUG [org.apache.http.client.protocol.RequestAddCookies] CookieSpec selected: best-match
2017-09-15 17:13:16 DEBUG [org.apache.http.client.protocol.RequestAuthCache] Re-using cached 'basic' auth scheme for http://192.168.56.101:8080
2017-09-15 17:13:16 DEBUG [org.apache.http.client.protocol.RequestTargetAuthentication] Target auth state: CHALLENGED
2017-09-15 17:13:16 DEBUG [org.apache.http.client.protocol.RequestProxyAuthentication] Proxy auth state: UNCHALLENGED
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Attempt 1 to execute request
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Sending request: GET /kie-drools-wb/maven2/com/myteam/Project1/maven-metadata.xml.sha1 HTTP/1.1
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] >> "GET /kie-drools-wb/maven2/com/myteam/Project1/maven-metadata.xml.sha1 HTTP/1.1[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] >> "Cache-Control: no-cache, no-store[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] >> "Pragma: no-cache[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] >> "Accept-Encoding: gzip,deflate[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] >> "Host: 192.168.56.101:8080[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] >> "Connection: Keep-Alive[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] >> "User-Agent: Aether[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] >> "Authorization: Basic dG9tY2F0OnRvbWNhdA==[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] >> "[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] >> GET /kie-drools-wb/maven2/com/myteam/Project1/maven-metadata.xml.sha1 HTTP/1.1
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] >> Cache-Control: no-cache, no-store
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] >> Pragma: no-cache
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] >> Accept-Encoding: gzip,deflate
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] >> Host: 192.168.56.101:8080
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] >> Connection: Keep-Alive
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] >> User-Agent: Aether
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] >> Authorization: Basic dG9tY2F0OnRvbWNhdA==
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "HTTP/1.1 200 [\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "Content-Disposition: attachment;filename="maven-metadata.xml.sha1"[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "Accept-Ranges: bytes[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "ETag: maven-metadata.xml.sha1_40_1505452498000[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "Last-Modified: Fri, 15 Sep 2017 05:14:58 GMT[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "Expires: Fri, 22 Sep 2017 05:15:05 GMT[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "Content-Range: bytes 0-39/40[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "Content-Type: application/octet-stream[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "Content-Length: 40[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "Date: Fri, 15 Sep 2017 05:15:05 GMT[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Receiving response: HTTP/1.1 200
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << HTTP/1.1 200
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << Content-Disposition: attachment;filename="maven-metadata.xml.sha1"
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << Accept-Ranges: bytes
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << ETag: maven-metadata.xml.sha1_40_1505452498000
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << Last-Modified: Fri, 15 Sep 2017 05:14:58 GMT
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << Expires: Fri, 22 Sep 2017 05:15:05 GMT
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << Content-Range: bytes 0-39/40
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << Content-Type: application/octet-stream
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << Content-Length: 40
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << Date: Fri, 15 Sep 2017 05:15:05 GMT
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Connection can be kept alive indefinitely
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Authentication succeeded
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.client.TargetAuthenticationStrategy] Caching 'basic' auth scheme for http://192.168.56.101:8080
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "45ae2e579cdba0df5dda5504db779dd9e89a3231"
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection [id: 0][route: {}->http://192.168.56.101:8080] can be kept alive indefinitely
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection released: [id: 0][route: {}->http://192.168.56.101:8080][total kept alive: 1; route allocated: 1 of 50; total allocated: 1 of 100]
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection manager is shutting down
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Connection 0.0.0.0:58485<->192.168.56.101:8080 closed
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Connection 0.0.0.0:58485<->192.168.56.101:8080 closed
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection manager shut down
2017-09-15 17:13:16 DEBUG [org.eclipse.aether.internal.impl.DefaultUpdateCheckManager] Writing tracking file /Users/zhouhuiyu/.m2/repository/com/myteam/Project1/resolver-status.properties
2017-09-15 17:13:16 DEBUG [org.apache.http.client.protocol.RequestAddCookies] CookieSpec selected: best-match
2017-09-15 17:13:16 DEBUG [org.apache.http.client.protocol.RequestTargetAuthentication] Target auth state: UNCHALLENGED
2017-09-15 17:13:16 DEBUG [org.apache.http.client.protocol.RequestProxyAuthentication] Proxy auth state: UNCHALLENGED
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Attempt 1 to execute request
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Sending request: HEAD /maven2/com/myteam/Project1/maven-metadata.xml HTTP/1.1
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] >> "HEAD /maven2/com/myteam/Project1/maven-metadata.xml HTTP/1.1[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] >> "Cache-Control: no-cache, no-store[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] >> "Pragma: no-cache[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] >> "Accept-Encoding: gzip,deflate[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] >> "Host: repo1.maven.org[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] >> "Connection: Keep-Alive[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] >> "User-Agent: Aether[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] >> "[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] >> HEAD /maven2/com/myteam/Project1/maven-metadata.xml HTTP/1.1
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] >> Cache-Control: no-cache, no-store
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] >> Pragma: no-cache
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] >> Accept-Encoding: gzip,deflate
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] >> Host: repo1.maven.org
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] >> Connection: Keep-Alive
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] >> User-Agent: Aether
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "HTTP/1.1 404 Not Found[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "Last-Modified: Wed, 10 Aug 2016 15:08:35 GMT[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "ETag: "1fb066da6a67c7c02962f59b4b8cd1ee"[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "x-amz-error-code: NoSuchKey[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "x-amz-error-message: The specified key does not exist.[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "x-amz-error-detail-Key: maven2/com/myteam/Project1/maven-metadata.xml[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "Content-Type: text/html[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "Via: 1.1 varnish[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "Fastly-Debug-Digest: 1fc252e735fbedde68428e5160109ef7cb80d88a1fef4764625ea8366cd2593c[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "Content-Length: 554[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "Accept-Ranges: bytes[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "Date: Fri, 15 Sep 2017 09:13:16 GMT[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "Via: 1.1 varnish[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "Age: 83094[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "Connection: keep-alive[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "X-Served-By: cache-iad2129-IAD, cache-sea1040-SEA[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "X-Cache: MISS, HIT[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "X-Cache-Hits: 0, 2[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "X-Timer: S1505466796.469920,VS0,VE0[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.wire] << "[\r][\n]"
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Receiving response: HTTP/1.1 404 Not Found
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << HTTP/1.1 404 Not Found
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << Last-Modified: Wed, 10 Aug 2016 15:08:35 GMT
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << ETag: "1fb066da6a67c7c02962f59b4b8cd1ee"
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << x-amz-error-code: NoSuchKey
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << x-amz-error-message: The specified key does not exist.
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << x-amz-error-detail-Key: maven2/com/myteam/Project1/maven-metadata.xml
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << Content-Type: text/html
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << Via: 1.1 varnish
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << Fastly-Debug-Digest: 1fc252e735fbedde68428e5160109ef7cb80d88a1fef4764625ea8366cd2593c
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << Content-Length: 554
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << Accept-Ranges: bytes
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << Date: Fri, 15 Sep 2017 09:13:16 GMT
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << Via: 1.1 varnish
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << Age: 83094
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << Connection: keep-alive
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << X-Served-By: cache-iad2129-IAD, cache-sea1040-SEA
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << X-Cache: MISS, HIT
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << X-Cache-Hits: 0, 2
2017-09-15 17:13:16 DEBUG [org.apache.http.headers] << X-Timer: S1505466796.469920,VS0,VE0
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Connection can be kept alive indefinitely
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection [id: 2][route: {}->http://repo1.maven.org] can be kept alive indefinitely
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection released: [id: 2][route: {}->http://repo1.maven.org][total kept alive: 1; route allocated: 1 of 50; total allocated: 1 of 100]
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection manager is shutting down
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Connection 0.0.0.0:58487<->151.101.52.209:80 closed
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Connection 0.0.0.0:58487<->151.101.52.209:80 closed
2017-09-15 17:13:16 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection manager shut down
2017-09-15 17:13:16 DEBUG [org.eclipse.aether.internal.impl.DefaultUpdateCheckManager] Writing tracking file /Users/zhouhuiyu/.m2/repository/com/myteam/Project1/resolver-status.properties
2017-09-15 17:13:17 DEBUG [org.apache.http.client.protocol.RequestAddCookies] CookieSpec selected: best-match
2017-09-15 17:13:17 DEBUG [org.apache.http.client.protocol.RequestTargetAuthentication] Target auth state: UNCHALLENGED
2017-09-15 17:13:17 DEBUG [org.apache.http.client.protocol.RequestProxyAuthentication] Proxy auth state: UNCHALLENGED
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Attempt 1 to execute request
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Sending request: GET /maven2/com/myteam/Project1/maven-metadata.xml HTTP/1.1
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "GET /maven2/com/myteam/Project1/maven-metadata.xml HTTP/1.1[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Cache-Control: no-cache, no-store[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Pragma: no-cache[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Accept-Encoding: gzip,deflate[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Host: repo.maven.apache.org[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Connection: Keep-Alive[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "User-Agent: Aether[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> GET /maven2/com/myteam/Project1/maven-metadata.xml HTTP/1.1
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Cache-Control: no-cache, no-store
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Pragma: no-cache
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Accept-Encoding: gzip,deflate
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Host: repo.maven.apache.org
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Connection: Keep-Alive
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> User-Agent: Aether
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "HTTP/1.1 404 Not Found[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Last-Modified: Wed, 10 Aug 2016 15:08:35 GMT[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "ETag: "1fb066da6a67c7c02962f59b4b8cd1ee"[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "x-amz-error-code: NoSuchKey[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "x-amz-error-message: The specified key does not exist.[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "x-amz-error-detail-Key: maven2/com/myteam/Project1/maven-metadata.xml[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Content-Type: text/html[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Via: 1.1 varnish[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Fastly-Debug-Digest: 1fc252e735fbedde68428e5160109ef7cb80d88a1fef4764625ea8366cd2593c[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Content-Length: 554[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Accept-Ranges: bytes[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Date: Fri, 15 Sep 2017 09:13:17 GMT[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Via: 1.1 varnish[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Age: 83095[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Connection: keep-alive[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "X-Served-By: cache-iad2129-IAD, cache-sea1024-SEA[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "X-Cache: MISS, HIT[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "X-Cache-Hits: 0, 1[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "X-Timer: S1505466797.058846,VS0,VE0[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Receiving response: HTTP/1.1 404 Not Found
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << HTTP/1.1 404 Not Found
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Last-Modified: Wed, 10 Aug 2016 15:08:35 GMT
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << ETag: "1fb066da6a67c7c02962f59b4b8cd1ee"
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << x-amz-error-code: NoSuchKey
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << x-amz-error-message: The specified key does not exist.
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << x-amz-error-detail-Key: maven2/com/myteam/Project1/maven-metadata.xml
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Content-Type: text/html
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Via: 1.1 varnish
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Fastly-Debug-Digest: 1fc252e735fbedde68428e5160109ef7cb80d88a1fef4764625ea8366cd2593c
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Content-Length: 554
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Accept-Ranges: bytes
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Date: Fri, 15 Sep 2017 09:13:17 GMT
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Via: 1.1 varnish
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Age: 83095
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Connection: keep-alive
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << X-Served-By: cache-iad2129-IAD, cache-sea1024-SEA
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << X-Cache: MISS, HIT
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << X-Cache-Hits: 0, 1
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << X-Timer: S1505466797.058846,VS0,VE0
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Connection can be kept alive indefinitely
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "<html>[\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "<head><title>404 Not Found</title></head>[\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "<body bgcolor="white">[\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "<center><h1>404 Not Found</h1></center>[\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "<hr><center>nginx</center>[\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "</body>[\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "</html>[\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "<!-- a padding to disable MSIE and Chrome friendly error page -->[\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "<!-- a padding to disable MSIE and Chrome friendly error page -->[\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "<!-- a padding to disable MSIE and Chrome friendly error page -->[\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "<!-- a padding to disable MSIE and Chrome friendly error page -->[\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "<!-- a padding to disable MSIE and Chrome friendly error page -->[\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "<!-- a padding to disable MSIE and Chrome friendly error page -->[\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "[\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "[\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "[\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection [id: 1][route: {s}->https://repo.maven.apache.org] can be kept alive indefinitely
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection released: [id: 1][route: {s}->https://repo.maven.apache.org][total kept alive: 1; route allocated: 1 of 50; total allocated: 1 of 100]
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection manager is shutting down
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Connection 0.0.0.0:58486<->151.101.52.215:443 closed
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Connection 0.0.0.0:58486<->151.101.52.215:443 closed
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection manager shut down
2017-09-15 17:13:17 DEBUG [org.eclipse.aether.internal.impl.DefaultUpdateCheckManager] Writing tracking file /Users/zhouhuiyu/.m2/repository/com/myteam/Project1/resolver-status.properties
2017-09-15 17:13:17 DEBUG [org.eclipse.aether.internal.impl.DefaultTransporterProvider] Using transporter HttpTransporter with priority 5.0 for http://192.168.56.101:8080/kie-drools-wb/maven2/
2017-09-15 17:13:17 DEBUG [org.eclipse.aether.internal.impl.DefaultRepositoryConnectorProvider] Using connector BasicRepositoryConnector with priority 0.0 for http://192.168.56.101:8080/kie-drools-wb/maven2/ with username=tomcat, password=***
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection request: [route: {}->http://192.168.56.101:8080][total kept alive: 0; route allocated: 0 of 50; total allocated: 0 of 100]
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection leased: [id: 3][route: {}->http://192.168.56.101:8080][total kept alive: 0; route allocated: 1 of 50; total allocated: 1 of 100]
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.DefaultClientConnectionOperator] Connecting to 192.168.56.101:8080
2017-09-15 17:13:17 DEBUG [org.apache.http.client.protocol.RequestAddCookies] CookieSpec selected: best-match
2017-09-15 17:13:17 DEBUG [org.apache.http.client.protocol.RequestTargetAuthentication] Target auth state: UNCHALLENGED
2017-09-15 17:13:17 DEBUG [org.apache.http.client.protocol.RequestProxyAuthentication] Proxy auth state: UNCHALLENGED
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Attempt 1 to execute request
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Sending request: GET /kie-drools-wb/maven2/com/myteam/Project1/2.0.4/Project1-2.0.4.jar HTTP/1.1
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "GET /kie-drools-wb/maven2/com/myteam/Project1/2.0.4/Project1-2.0.4.jar HTTP/1.1[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Cache-Control: no-cache, no-store[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Pragma: no-cache[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Accept-Encoding: gzip,deflate[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Host: 192.168.56.101:8080[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Connection: Keep-Alive[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "User-Agent: Aether[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> GET /kie-drools-wb/maven2/com/myteam/Project1/2.0.4/Project1-2.0.4.jar HTTP/1.1
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Cache-Control: no-cache, no-store
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Pragma: no-cache
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Accept-Encoding: gzip,deflate
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Host: 192.168.56.101:8080
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Connection: Keep-Alive
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> User-Agent: Aether
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "HTTP/1.1 401 [\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "X-FRAME-OPTIONS: SAMEORIGIN[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "X-XSS-Protection: 1; mode=block[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "WWW-Authenticate: Basic realm="KIE Workbench Realm"[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Content-Type: text/html;charset=utf-8[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Content-Language: en[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Content-Length: 1034[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Date: Fri, 15 Sep 2017 05:15:05 GMT[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Receiving response: HTTP/1.1 401
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << HTTP/1.1 401
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << X-FRAME-OPTIONS: SAMEORIGIN
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << X-XSS-Protection: 1; mode=block
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << WWW-Authenticate: Basic realm="KIE Workbench Realm"
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Content-Type: text/html;charset=utf-8
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Content-Language: en
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Content-Length: 1034
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Date: Fri, 15 Sep 2017 05:15:05 GMT
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Connection can be kept alive indefinitely
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Authentication required
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.DefaultHttpClient] 192.168.56.101:8080 requested authentication
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.TargetAuthenticationStrategy] Authentication schemes in the order of preference: [negotiate, Kerberos, NTLM, Digest, Basic]
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.TargetAuthenticationStrategy] Challenge for negotiate authentication scheme not available
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.TargetAuthenticationStrategy] Challenge for Kerberos authentication scheme not available
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.TargetAuthenticationStrategy] Challenge for NTLM authentication scheme not available
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.TargetAuthenticationStrategy] Challenge for Digest authentication scheme not available
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Selected authentication options: [BASIC]
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "<!doctype html><html lang="en"><head><title>HTTP Status 401 [0xe2][0x80][0x93] Unauthorized</title><style type="text/css">h1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} h2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} h3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} body {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} b {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} p {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;} a {color:black;} a.name {color:black;} .line {height:1px;background-color:#525D76;border:none;}</style></head><body><h1>HTTP Status 401 [0xe2][0x80][0x93] Unauthorized</h1><hr class="line" /><p><b>Type</b> Status Report</p><p><b>Description</b> The request has not been applied because it lacks valid authentication credentials for the target resource.</p><hr class="line" /><h3>Apache Tomcat/8.5.20</h3></body></html>"
2017-09-15 17:13:17 DEBUG [org.apache.http.client.protocol.RequestAddCookies] CookieSpec selected: best-match
2017-09-15 17:13:17 DEBUG [org.apache.http.client.protocol.RequestTargetAuthentication] Target auth state: CHALLENGED
2017-09-15 17:13:17 DEBUG [org.apache.http.client.protocol.RequestTargetAuthentication] Generating response to an authentication challenge using basic scheme
2017-09-15 17:13:17 DEBUG [org.apache.http.client.protocol.RequestProxyAuthentication] Proxy auth state: UNCHALLENGED
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Attempt 2 to execute request
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Sending request: GET /kie-drools-wb/maven2/com/myteam/Project1/2.0.4/Project1-2.0.4.jar HTTP/1.1
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "GET /kie-drools-wb/maven2/com/myteam/Project1/2.0.4/Project1-2.0.4.jar HTTP/1.1[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Cache-Control: no-cache, no-store[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Pragma: no-cache[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Accept-Encoding: gzip,deflate[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Host: 192.168.56.101:8080[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Connection: Keep-Alive[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "User-Agent: Aether[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Authorization: Basic dG9tY2F0OnRvbWNhdA==[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> GET /kie-drools-wb/maven2/com/myteam/Project1/2.0.4/Project1-2.0.4.jar HTTP/1.1
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Cache-Control: no-cache, no-store
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Pragma: no-cache
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Accept-Encoding: gzip,deflate
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Host: 192.168.56.101:8080
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Connection: Keep-Alive
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> User-Agent: Aether
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Authorization: Basic dG9tY2F0OnRvbWNhdA==
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "HTTP/1.1 200 [\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Content-Disposition: attachment;filename="Project1-2.0.4.jar"[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Accept-Ranges: bytes[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "ETag: Project1-2.0.4.jar_5027_1505452498000[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Last-Modified: Fri, 15 Sep 2017 05:14:58 GMT[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Expires: Fri, 22 Sep 2017 05:15:06 GMT[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Content-Range: bytes 0-5026/5027[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Content-Type: application/java-archive[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Content-Length: 5027[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Date: Fri, 15 Sep 2017 05:15:05 GMT[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Receiving response: HTTP/1.1 200
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << HTTP/1.1 200
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Content-Disposition: attachment;filename="Project1-2.0.4.jar"
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Accept-Ranges: bytes
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << ETag: Project1-2.0.4.jar_5027_1505452498000
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Last-Modified: Fri, 15 Sep 2017 05:14:58 GMT
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Expires: Fri, 22 Sep 2017 05:15:06 GMT
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Content-Range: bytes 0-5026/5027
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Content-Type: application/java-archive
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Content-Length: 5027
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Date: Fri, 15 Sep 2017 05:15:05 GMT
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Connection can be kept alive indefinitely
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Authentication succeeded
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.TargetAuthenticationStrategy] Caching 'basic' auth scheme for http://192.168.56.101:8080
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection [id: 3][route: {}->http://192.168.56.101:8080] can be kept alive indefinitely
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection released: [id: 3][route: {}->http://192.168.56.101:8080][total kept alive: 1; route allocated: 1 of 50; total allocated: 1 of 100]
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection request: [route: {}->http://192.168.56.101:8080][total kept alive: 1; route allocated: 1 of 50; total allocated: 1 of 100]
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection leased: [id: 3][route: {}->http://192.168.56.101:8080][total kept alive: 0; route allocated: 1 of 50; total allocated: 1 of 100]
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Stale connection check
2017-09-15 17:13:17 DEBUG [org.apache.http.client.protocol.RequestAddCookies] CookieSpec selected: best-match
2017-09-15 17:13:17 DEBUG [org.apache.http.client.protocol.RequestAuthCache] Re-using cached 'basic' auth scheme for http://192.168.56.101:8080
2017-09-15 17:13:17 DEBUG [org.apache.http.client.protocol.RequestTargetAuthentication] Target auth state: CHALLENGED
2017-09-15 17:13:17 DEBUG [org.apache.http.client.protocol.RequestProxyAuthentication] Proxy auth state: UNCHALLENGED
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Attempt 1 to execute request
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Sending request: GET /kie-drools-wb/maven2/com/myteam/Project1/2.0.4/Project1-2.0.4.jar.sha1 HTTP/1.1
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "GET /kie-drools-wb/maven2/com/myteam/Project1/2.0.4/Project1-2.0.4.jar.sha1 HTTP/1.1[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Cache-Control: no-cache, no-store[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Pragma: no-cache[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Accept-Encoding: gzip,deflate[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Host: 192.168.56.101:8080[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Connection: Keep-Alive[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "User-Agent: Aether[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Authorization: Basic dG9tY2F0OnRvbWNhdA==[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> GET /kie-drools-wb/maven2/com/myteam/Project1/2.0.4/Project1-2.0.4.jar.sha1 HTTP/1.1
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Cache-Control: no-cache, no-store
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Pragma: no-cache
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Accept-Encoding: gzip,deflate
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Host: 192.168.56.101:8080
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Connection: Keep-Alive
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> User-Agent: Aether
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Authorization: Basic dG9tY2F0OnRvbWNhdA==
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "HTTP/1.1 200 [\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Content-Disposition: attachment;filename="Project1-2.0.4.jar.sha1"[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Accept-Ranges: bytes[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "ETag: Project1-2.0.4.jar.sha1_40_1505452498000[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Last-Modified: Fri, 15 Sep 2017 05:14:58 GMT[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Expires: Fri, 22 Sep 2017 05:15:06 GMT[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Content-Range: bytes 0-39/40[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Content-Type: application/octet-stream[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Content-Length: 40[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Date: Fri, 15 Sep 2017 05:15:05 GMT[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Receiving response: HTTP/1.1 200
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << HTTP/1.1 200
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Content-Disposition: attachment;filename="Project1-2.0.4.jar.sha1"
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Accept-Ranges: bytes
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << ETag: Project1-2.0.4.jar.sha1_40_1505452498000
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Last-Modified: Fri, 15 Sep 2017 05:14:58 GMT
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Expires: Fri, 22 Sep 2017 05:15:06 GMT
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Content-Range: bytes 0-39/40
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Content-Type: application/octet-stream
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Content-Length: 40
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Date: Fri, 15 Sep 2017 05:15:05 GMT
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Connection can be kept alive indefinitely
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Authentication succeeded
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.TargetAuthenticationStrategy] Caching 'basic' auth scheme for http://192.168.56.101:8080
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "4dbd345dcd3fdd028d75d7e26335eaa10aece46b"
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection [id: 3][route: {}->http://192.168.56.101:8080] can be kept alive indefinitely
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection released: [id: 3][route: {}->http://192.168.56.101:8080][total kept alive: 1; route allocated: 1 of 50; total allocated: 1 of 100]
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection manager is shutting down
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Connection 0.0.0.0:58489<->192.168.56.101:8080 closed
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Connection 0.0.0.0:58489<->192.168.56.101:8080 closed
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection manager shut down
2017-09-15 17:13:17 DEBUG [org.eclipse.aether.internal.impl.EnhancedLocalRepositoryManager] Writing tracking file /Users/zhouhuiyu/.m2/repository/com/myteam/Project1/2.0.4/_remote.repositories
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection manager is shutting down
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection manager shut down
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection manager is shutting down
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection manager shut down
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection manager is shutting down
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection manager shut down
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection manager is shutting down
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection manager shut down
2017-09-15 17:13:17 DEBUG [org.eclipse.aether.internal.impl.DefaultTransporterProvider] Using transporter HttpTransporter with priority 5.0 for http://192.168.56.101:8080/kie-drools-wb/maven2/
2017-09-15 17:13:17 DEBUG [org.eclipse.aether.internal.impl.DefaultRepositoryConnectorProvider] Using connector BasicRepositoryConnector with priority 0.0 for http://192.168.56.101:8080/kie-drools-wb/maven2/ with username=tomcat, password=***
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection request: [route: {}->http://192.168.56.101:8080][total kept alive: 0; route allocated: 0 of 50; total allocated: 0 of 100]
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection leased: [id: 4][route: {}->http://192.168.56.101:8080][total kept alive: 0; route allocated: 1 of 50; total allocated: 1 of 100]
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.DefaultClientConnectionOperator] Connecting to 192.168.56.101:8080
2017-09-15 17:13:17 DEBUG [org.apache.http.client.protocol.RequestAddCookies] CookieSpec selected: best-match
2017-09-15 17:13:17 DEBUG [org.apache.http.client.protocol.RequestTargetAuthentication] Target auth state: UNCHALLENGED
2017-09-15 17:13:17 DEBUG [org.apache.http.client.protocol.RequestProxyAuthentication] Proxy auth state: UNCHALLENGED
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Attempt 1 to execute request
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Sending request: GET /kie-drools-wb/maven2/com/myteam/Project1/2.0.4/Project1-2.0.4.pom HTTP/1.1
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "GET /kie-drools-wb/maven2/com/myteam/Project1/2.0.4/Project1-2.0.4.pom HTTP/1.1[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Cache-Control: no-cache, no-store[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Pragma: no-cache[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Accept-Encoding: gzip,deflate[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Host: 192.168.56.101:8080[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Connection: Keep-Alive[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "User-Agent: Aether[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> GET /kie-drools-wb/maven2/com/myteam/Project1/2.0.4/Project1-2.0.4.pom HTTP/1.1
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Cache-Control: no-cache, no-store
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Pragma: no-cache
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Accept-Encoding: gzip,deflate
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Host: 192.168.56.101:8080
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Connection: Keep-Alive
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> User-Agent: Aether
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "HTTP/1.1 401 [\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "X-FRAME-OPTIONS: SAMEORIGIN[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "X-XSS-Protection: 1; mode=block[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "WWW-Authenticate: Basic realm="KIE Workbench Realm"[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Content-Type: text/html;charset=utf-8[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Content-Language: en[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Content-Length: 1034[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Date: Fri, 15 Sep 2017 05:15:06 GMT[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Receiving response: HTTP/1.1 401
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << HTTP/1.1 401
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << X-FRAME-OPTIONS: SAMEORIGIN
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << X-XSS-Protection: 1; mode=block
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << WWW-Authenticate: Basic realm="KIE Workbench Realm"
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Content-Type: text/html;charset=utf-8
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Content-Language: en
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Content-Length: 1034
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Date: Fri, 15 Sep 2017 05:15:06 GMT
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Connection can be kept alive indefinitely
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Authentication required
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.DefaultHttpClient] 192.168.56.101:8080 requested authentication
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.TargetAuthenticationStrategy] Authentication schemes in the order of preference: [negotiate, Kerberos, NTLM, Digest, Basic]
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.TargetAuthenticationStrategy] Challenge for negotiate authentication scheme not available
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.TargetAuthenticationStrategy] Challenge for Kerberos authentication scheme not available
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.TargetAuthenticationStrategy] Challenge for NTLM authentication scheme not available
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.TargetAuthenticationStrategy] Challenge for Digest authentication scheme not available
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Selected authentication options: [BASIC]
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "<!doctype html><html lang="en"><head><title>HTTP Status 401 [0xe2][0x80][0x93] Unauthorized</title><style type="text/css">h1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} h2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} h3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} body {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} b {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} p {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;} a {color:black;} a.name {color:black;} .line {height:1px;background-color:#525D76;border:none;}</style></head><body><h1>HTTP Status 401 [0xe2][0x80][0x93] Unauthorized</h1><hr class="line" /><p><b>Type</b> Status Report</p><p><b>Description</b> The request has not been applied because it lacks valid authentication credentials for the target resource.</p><hr class="line" /><h3>Apache Tomcat/8.5.20</h3></body></html>"
2017-09-15 17:13:17 DEBUG [org.apache.http.client.protocol.RequestAddCookies] CookieSpec selected: best-match
2017-09-15 17:13:17 DEBUG [org.apache.http.client.protocol.RequestTargetAuthentication] Target auth state: CHALLENGED
2017-09-15 17:13:17 DEBUG [org.apache.http.client.protocol.RequestTargetAuthentication] Generating response to an authentication challenge using basic scheme
2017-09-15 17:13:17 DEBUG [org.apache.http.client.protocol.RequestProxyAuthentication] Proxy auth state: UNCHALLENGED
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Attempt 2 to execute request
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Sending request: GET /kie-drools-wb/maven2/com/myteam/Project1/2.0.4/Project1-2.0.4.pom HTTP/1.1
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "GET /kie-drools-wb/maven2/com/myteam/Project1/2.0.4/Project1-2.0.4.pom HTTP/1.1[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Cache-Control: no-cache, no-store[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Pragma: no-cache[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Accept-Encoding: gzip,deflate[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Host: 192.168.56.101:8080[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Connection: Keep-Alive[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "User-Agent: Aether[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Authorization: Basic dG9tY2F0OnRvbWNhdA==[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> GET /kie-drools-wb/maven2/com/myteam/Project1/2.0.4/Project1-2.0.4.pom HTTP/1.1
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Cache-Control: no-cache, no-store
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Pragma: no-cache
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Accept-Encoding: gzip,deflate
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Host: 192.168.56.101:8080
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Connection: Keep-Alive
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> User-Agent: Aether
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Authorization: Basic dG9tY2F0OnRvbWNhdA==
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "HTTP/1.1 200 [\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Content-Disposition: attachment;filename="Project1-2.0.4.pom"[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Accept-Ranges: bytes[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "ETag: Project1-2.0.4.pom_657_1505452498000[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Last-Modified: Fri, 15 Sep 2017 05:14:58 GMT[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Expires: Fri, 22 Sep 2017 05:15:06 GMT[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Content-Range: bytes 0-656/657[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Content-Type: application/octet-stream[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Content-Length: 657[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Date: Fri, 15 Sep 2017 05:15:06 GMT[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Receiving response: HTTP/1.1 200
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << HTTP/1.1 200
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Content-Disposition: attachment;filename="Project1-2.0.4.pom"
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Accept-Ranges: bytes
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << ETag: Project1-2.0.4.pom_657_1505452498000
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Last-Modified: Fri, 15 Sep 2017 05:14:58 GMT
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Expires: Fri, 22 Sep 2017 05:15:06 GMT
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Content-Range: bytes 0-656/657
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Content-Type: application/octet-stream
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Content-Length: 657
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Date: Fri, 15 Sep 2017 05:15:06 GMT
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Connection can be kept alive indefinitely
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Authentication succeeded
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.TargetAuthenticationStrategy] Caching 'basic' auth scheme for http://192.168.56.101:8080
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "<?xml version="1.0" encoding="UTF-8"?>[\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"[\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << " xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">[\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << " <modelVersion>4.0.0</modelVersion>[\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << " <groupId>com.myteam</groupId>[\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << " <artifactId>Project1</artifactId>[\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << " <version>2.0.4</version>[\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << " <name>Project1</name>[\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << " <description>default desc</description>[\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << " <repositories>[\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << " <repository>[\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << " <id>guvnor-m2-repo</id>[\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << " <name>Guvnor M2 Repo</name>[\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << " <url>http://192.168.56.101:8080/kie-drools-wb/maven2/</url>[\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << " </repository>[\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << " </repositories>[\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "</project>[\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection [id: 4][route: {}->http://192.168.56.101:8080] can be kept alive indefinitely
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection released: [id: 4][route: {}->http://192.168.56.101:8080][total kept alive: 1; route allocated: 1 of 50; total allocated: 1 of 100]
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection request: [route: {}->http://192.168.56.101:8080][total kept alive: 1; route allocated: 1 of 50; total allocated: 1 of 100]
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection leased: [id: 4][route: {}->http://192.168.56.101:8080][total kept alive: 0; route allocated: 1 of 50; total allocated: 1 of 100]
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Stale connection check
2017-09-15 17:13:17 DEBUG [org.apache.http.client.protocol.RequestAddCookies] CookieSpec selected: best-match
2017-09-15 17:13:17 DEBUG [org.apache.http.client.protocol.RequestAuthCache] Re-using cached 'basic' auth scheme for http://192.168.56.101:8080
2017-09-15 17:13:17 DEBUG [org.apache.http.client.protocol.RequestTargetAuthentication] Target auth state: CHALLENGED
2017-09-15 17:13:17 DEBUG [org.apache.http.client.protocol.RequestProxyAuthentication] Proxy auth state: UNCHALLENGED
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Attempt 1 to execute request
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Sending request: GET /kie-drools-wb/maven2/com/myteam/Project1/2.0.4/Project1-2.0.4.pom.sha1 HTTP/1.1
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "GET /kie-drools-wb/maven2/com/myteam/Project1/2.0.4/Project1-2.0.4.pom.sha1 HTTP/1.1[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Cache-Control: no-cache, no-store[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Pragma: no-cache[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Accept-Encoding: gzip,deflate[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Host: 192.168.56.101:8080[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Connection: Keep-Alive[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "User-Agent: Aether[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "Authorization: Basic dG9tY2F0OnRvbWNhdA==[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] >> "[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> GET /kie-drools-wb/maven2/com/myteam/Project1/2.0.4/Project1-2.0.4.pom.sha1 HTTP/1.1
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Cache-Control: no-cache, no-store
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Pragma: no-cache
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Accept-Encoding: gzip,deflate
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Host: 192.168.56.101:8080
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Connection: Keep-Alive
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> User-Agent: Aether
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] >> Authorization: Basic dG9tY2F0OnRvbWNhdA==
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "HTTP/1.1 200 [\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Content-Disposition: attachment;filename="Project1-2.0.4.pom.sha1"[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Accept-Ranges: bytes[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "ETag: Project1-2.0.4.pom.sha1_40_1505452498000[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Last-Modified: Fri, 15 Sep 2017 05:14:58 GMT[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Expires: Fri, 22 Sep 2017 05:15:06 GMT[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Content-Range: bytes 0-39/40[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Content-Type: application/octet-stream[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Content-Length: 40[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "Date: Fri, 15 Sep 2017 05:15:06 GMT[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "[\r][\n]"
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Receiving response: HTTP/1.1 200
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << HTTP/1.1 200
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Content-Disposition: attachment;filename="Project1-2.0.4.pom.sha1"
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Accept-Ranges: bytes
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << ETag: Project1-2.0.4.pom.sha1_40_1505452498000
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Last-Modified: Fri, 15 Sep 2017 05:14:58 GMT
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Expires: Fri, 22 Sep 2017 05:15:06 GMT
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Content-Range: bytes 0-39/40
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Content-Type: application/octet-stream
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Content-Length: 40
2017-09-15 17:13:17 DEBUG [org.apache.http.headers] << Date: Fri, 15 Sep 2017 05:15:06 GMT
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Connection can be kept alive indefinitely
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Authentication succeeded
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.client.TargetAuthenticationStrategy] Caching 'basic' auth scheme for http://192.168.56.101:8080
2017-09-15 17:13:17 DEBUG [org.apache.http.wire] << "15b4a50175195433caf0d3bfe8fc9887087b0220"
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection [id: 4][route: {}->http://192.168.56.101:8080] can be kept alive indefinitely
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection released: [id: 4][route: {}->http://192.168.56.101:8080][total kept alive: 1; route allocated: 1 of 50; total allocated: 1 of 100]
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection manager is shutting down
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Connection 0.0.0.0:58490<->192.168.56.101:8080 closed
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Connection 0.0.0.0:58490<->192.168.56.101:8080 closed
2017-09-15 17:13:17 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection manager shut down
2017-09-15 17:13:17 DEBUG [org.eclipse.aether.internal.impl.EnhancedLocalRepositoryManager] Writing tracking file /Users/zhouhuiyu/.m2/repository/com/myteam/Project1/2.0.4/_remote.repositories
2017-09-15 17:13:17 DEBUG [org.eclipse.aether.internal.impl.DefaultDependencyCollector] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=1, ConflictMarker.nodeCount=1, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=1, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=3, ConflictResolver.conflictItemCount=1, DefaultDependencyCollector.collectTime=25, DefaultDependencyCollector.transformTime=6}
2017-09-15 17:13:17 DEBUG [org.appformer.maven.integration.embedder.MavenEmbedderUtils] Not in OSGi: using plexus based maven parser
2017-09-15 17:13:17 DEBUG [org.eclipse.aether.internal.impl.DefaultLocalRepositoryProvider] Using manager EnhancedLocalRepositoryManager with priority 10.0 for /Users/zhouhuiyu/.m2/repository
2017-09-15 17:13:17 DEBUG [org.eclipse.aether.internal.impl.DefaultLocalRepositoryProvider] Using manager EnhancedLocalRepositoryManager with priority 10.0 for /Users/zhouhuiyu/.m2/repository
2017-09-15 17:13:17 DEBUG [org.eclipse.aether.internal.impl.DefaultDependencyCollector] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=0, ConflictMarker.nodeCount=1, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=0, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=0, ConflictResolver.conflictItemCount=0, DefaultDependencyCollector.collectTime=0, DefaultDependencyCollector.transformTime=0}
2017-09-15 17:13:18 INFO [org.drools.compiler.kie.builder.impl.KieRepositoryImpl] KieModule was added: ZipKieModule[releaseId=com.myteam:Project1:2.0.4,file=/Users/zhouhuiyu/.m2/repository/com/myteam/Project1/2.0.4/Project1-2.0.4.jar]
2017-09-15 17:13:18 DEBUG [org.appformer.maven.integration.embedder.MavenEmbedderUtils] Not in OSGi: using plexus based maven parser
2017-09-15 17:13:18 DEBUG [org.eclipse.aether.internal.impl.DefaultLocalRepositoryProvider] Using manager EnhancedLocalRepositoryManager with priority 10.0 for /Users/zhouhuiyu/.m2/repository
2017-09-15 17:13:18 DEBUG [org.eclipse.aether.internal.impl.DefaultLocalRepositoryProvider] Using manager EnhancedLocalRepositoryManager with priority 10.0 for /Users/zhouhuiyu/.m2/repository
2017-09-15 17:13:18 DEBUG [org.eclipse.aether.internal.impl.DefaultDependencyCollector] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=0, ConflictMarker.nodeCount=1, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=0, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=0, ConflictResolver.conflictItemCount=0, DefaultDependencyCollector.collectTime=0, DefaultDependencyCollector.transformTime=0}
2017-09-15 17:13:18 DEBUG [org.eclipse.aether.internal.impl.DefaultLocalRepositoryProvider] Using manager EnhancedLocalRepositoryManager with priority 10.0 for /Users/zhouhuiyu/.m2/repository
Process finished with exit code 130 (interrupted by signal 2: SIGINT)
> There is always HTTP 404 Error Where I request the maven2 in workbench
> ----------------------------------------------------------------------
>
> Key: DROOLS-1728
> URL: https://issues.jboss.org/browse/DROOLS-1728
> Project: Drools
> Issue Type: Bug
> Components: tools
> Affects Versions: 7.3.0.Final
> Environment: CentOS 6.8
> Virtual Box 5.x
> Tomcat 8.5.20
> kie-drools-wb-7.3.0.Final-tomcat8.war
> MySQL 5.6.x
> Reporter: HuiYu Zhou
> Assignee: Mario Fusco
> Priority: Blocker
> Labels: reported-by-qe
>
> I want to try KieScanner for the remote maven repo. So I setup the workbench and create "Project1" as a sample, I also build and deploy it successfully. I can see the jar named "Project1-1.0.0.jar" with GAV "com.myteam:Project1:1.0.0" exist in “Admin” -> "Artifacts".
> So I add the repository into my development pom.xml and the jar as dependency, but the jar can't been downloaded by Maven Project.
> I also try to open the url: http://192.168.56.101:8080/kie-drools-wb/maven2, but there is always HTTP Status 404 – Not Found happened with description " The origin server did not find a current representation for the target resource or is not willing to disclose that one exists."
> The most funny thing is I can open the url: http://192.168.56.101:8080/kie-drools-wb/maven2/com/myteam/Project1/maven..., the content is shown in my webpage as following:
> This XML file does not appear to have any style information associated with it. The document tree is shown below.
> <metadata>
> <groupId>com.myteam</groupId>
> <artifactId>Project1</artifactId>
> <versioning>
> <release>1.0.0</release>
> <versions>
> <version>1.0.0</version>
> </versions>
> <lastUpdated>20170913142741</lastUpdated>
> </versioning>
> </metadata>
> As remote maven repo of workbench, why not like my private nexus maven that I can open the link even if it 's a folder?
>
> my pom.xml as following:
> <?xml version="1.0" encoding="UTF-8"?>
> <project xmlns="http://maven.apache.org/POM/4.0.0"
> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
> <modelVersion>4.0.0</modelVersion>
> <groupId>drools</groupId>
> <artifactId>drools</artifactId>
> <version>1.0-SNAPSHOT</version>
> <properties>
> <drools.version>7.3.0.Final</drools.version>
> </properties>
> <repositories>
> <repository>
> <id>guvnor-m2-repo</id>
> <name>Guvnor M2 Repo</name>
> <url>http://192.168.56.101:8080/kie-drools-wb/maven2/</url>
> </repository>
> </repositories>
> <dependencies>
> <dependency>
> <groupId>com.myteam</groupId>
> <artifactId>Project1</artifactId>
> <version>1.0.0</version>
> </dependency>
> <!--drools dependencies -->
> </dependencies>
> </project>
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 9 months
[JBoss JIRA] (DROOLS-1728) There is always HTTP 404 Error Where I request the maven2 in workbench
by Michael Anstis (JIRA)
[ https://issues.jboss.org/browse/DROOLS-1728?page=com.atlassian.jira.plugi... ]
Michael Anstis commented on DROOLS-1728:
----------------------------------------
[~zhouhuiyu] Some of the (now deleted) comments suggest you're using GAV {{com.myteam:Project1:LATEST}}?
IIRC {{LATEST}} is not supported by Maven and hence neither {{KieScanner}}.
Assigning to [~mfusco] for comment.
> There is always HTTP 404 Error Where I request the maven2 in workbench
> ----------------------------------------------------------------------
>
> Key: DROOLS-1728
> URL: https://issues.jboss.org/browse/DROOLS-1728
> Project: Drools
> Issue Type: Bug
> Components: tools
> Affects Versions: 7.3.0.Final
> Environment: CentOS 6.8
> Virtual Box 5.x
> Tomcat 8.5.20
> kie-drools-wb-7.3.0.Final-tomcat8.war
> MySQL 5.6.x
> Reporter: HuiYu Zhou
> Assignee: Michael Anstis
> Priority: Blocker
> Labels: reported-by-qe
>
> I want to try KieScanner for the remote maven repo. So I setup the workbench and create "Project1" as a sample, I also build and deploy it successfully. I can see the jar named "Project1-1.0.0.jar" with GAV "com.myteam:Project1:1.0.0" exist in “Admin” -> "Artifacts".
> So I add the repository into my development pom.xml and the jar as dependency, but the jar can't been downloaded by Maven Project.
> I also try to open the url: http://192.168.56.101:8080/kie-drools-wb/maven2, but there is always HTTP Status 404 – Not Found happened with description " The origin server did not find a current representation for the target resource or is not willing to disclose that one exists."
> The most funny thing is I can open the url: http://192.168.56.101:8080/kie-drools-wb/maven2/com/myteam/Project1/maven..., the content is shown in my webpage as following:
> This XML file does not appear to have any style information associated with it. The document tree is shown below.
> <metadata>
> <groupId>com.myteam</groupId>
> <artifactId>Project1</artifactId>
> <versioning>
> <release>1.0.0</release>
> <versions>
> <version>1.0.0</version>
> </versions>
> <lastUpdated>20170913142741</lastUpdated>
> </versioning>
> </metadata>
> As remote maven repo of workbench, why not like my private nexus maven that I can open the link even if it 's a folder?
>
> my pom.xml as following:
> <?xml version="1.0" encoding="UTF-8"?>
> <project xmlns="http://maven.apache.org/POM/4.0.0"
> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
> <modelVersion>4.0.0</modelVersion>
> <groupId>drools</groupId>
> <artifactId>drools</artifactId>
> <version>1.0-SNAPSHOT</version>
> <properties>
> <drools.version>7.3.0.Final</drools.version>
> </properties>
> <repositories>
> <repository>
> <id>guvnor-m2-repo</id>
> <name>Guvnor M2 Repo</name>
> <url>http://192.168.56.101:8080/kie-drools-wb/maven2/</url>
> </repository>
> </repositories>
> <dependencies>
> <dependency>
> <groupId>com.myteam</groupId>
> <artifactId>Project1</artifactId>
> <version>1.0.0</version>
> </dependency>
> <!--drools dependencies -->
> </dependencies>
> </project>
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 9 months
[JBoss JIRA] (DROOLS-1728) There is always HTTP 404 Error Where I request the maven2 in workbench
by Michael Anstis (JIRA)
[ https://issues.jboss.org/browse/DROOLS-1728?page=com.atlassian.jira.plugi... ]
Michael Anstis reassigned DROOLS-1728:
--------------------------------------
Assignee: Mario Fusco (was: Michael Anstis)
> There is always HTTP 404 Error Where I request the maven2 in workbench
> ----------------------------------------------------------------------
>
> Key: DROOLS-1728
> URL: https://issues.jboss.org/browse/DROOLS-1728
> Project: Drools
> Issue Type: Bug
> Components: tools
> Affects Versions: 7.3.0.Final
> Environment: CentOS 6.8
> Virtual Box 5.x
> Tomcat 8.5.20
> kie-drools-wb-7.3.0.Final-tomcat8.war
> MySQL 5.6.x
> Reporter: HuiYu Zhou
> Assignee: Mario Fusco
> Priority: Blocker
> Labels: reported-by-qe
>
> I want to try KieScanner for the remote maven repo. So I setup the workbench and create "Project1" as a sample, I also build and deploy it successfully. I can see the jar named "Project1-1.0.0.jar" with GAV "com.myteam:Project1:1.0.0" exist in “Admin” -> "Artifacts".
> So I add the repository into my development pom.xml and the jar as dependency, but the jar can't been downloaded by Maven Project.
> I also try to open the url: http://192.168.56.101:8080/kie-drools-wb/maven2, but there is always HTTP Status 404 – Not Found happened with description " The origin server did not find a current representation for the target resource or is not willing to disclose that one exists."
> The most funny thing is I can open the url: http://192.168.56.101:8080/kie-drools-wb/maven2/com/myteam/Project1/maven..., the content is shown in my webpage as following:
> This XML file does not appear to have any style information associated with it. The document tree is shown below.
> <metadata>
> <groupId>com.myteam</groupId>
> <artifactId>Project1</artifactId>
> <versioning>
> <release>1.0.0</release>
> <versions>
> <version>1.0.0</version>
> </versions>
> <lastUpdated>20170913142741</lastUpdated>
> </versioning>
> </metadata>
> As remote maven repo of workbench, why not like my private nexus maven that I can open the link even if it 's a folder?
>
> my pom.xml as following:
> <?xml version="1.0" encoding="UTF-8"?>
> <project xmlns="http://maven.apache.org/POM/4.0.0"
> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
> <modelVersion>4.0.0</modelVersion>
> <groupId>drools</groupId>
> <artifactId>drools</artifactId>
> <version>1.0-SNAPSHOT</version>
> <properties>
> <drools.version>7.3.0.Final</drools.version>
> </properties>
> <repositories>
> <repository>
> <id>guvnor-m2-repo</id>
> <name>Guvnor M2 Repo</name>
> <url>http://192.168.56.101:8080/kie-drools-wb/maven2/</url>
> </repository>
> </repositories>
> <dependencies>
> <dependency>
> <groupId>com.myteam</groupId>
> <artifactId>Project1</artifactId>
> <version>1.0.0</version>
> </dependency>
> <!--drools dependencies -->
> </dependencies>
> </project>
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 9 months