修改包名 将logback加入到module中
This commit is contained in:
parent
f4efee4ea5
commit
5b87d7a2c4
|
|
@ -13,6 +13,7 @@
|
|||
<module>log4j-1.x-plugin</module>
|
||||
<module>log4j-2.x-plugin</module>
|
||||
<module>example</module>
|
||||
<module>logback-plugin</module>
|
||||
</modules>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
|
|
|
|||
|
|
@ -114,7 +114,7 @@
|
|||
<groupId>com.alibaba</groupId>
|
||||
<artifactId>dubbo</artifactId>
|
||||
<version>2.5.3</version>
|
||||
<scope>compile</scope>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.httpcomponents</groupId>
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@
|
|||
<groupId>org.apache.httpcomponents</groupId>
|
||||
<artifactId>httpclient</artifactId>
|
||||
<version>4.3</version>
|
||||
<scope>compile</scope>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<!--
|
||||
<dependency>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
package org.skywalking.httpClient.v4.plugin;
|
||||
package com.ai.cloud.skywalking.httpClient.v4.plugin;
|
||||
|
||||
import org.apache.http.HttpHost;
|
||||
import org.apache.http.HttpRequest;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package org.skywalking.httpClient.v4.plugin;
|
||||
package com.ai.cloud.skywalking.httpClient.v4.plugin;
|
||||
|
||||
import com.ai.cloud.skywalking.api.IBuriedPointType;
|
||||
import com.ai.cloud.skywalking.protocol.common.CallType;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package org.skywalking.httpClient.v4.plugin.define;
|
||||
package com.ai.cloud.skywalking.httpClient.v4.plugin.define;
|
||||
|
||||
import com.ai.cloud.skywalking.plugin.interceptor.MethodMatcher;
|
||||
import com.ai.cloud.skywalking.plugin.interceptor.matcher.SimpleMethodMatcher;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package org.skywalking.httpClient.v4.plugin.define;
|
||||
package com.ai.cloud.skywalking.httpClient.v4.plugin.define;
|
||||
|
||||
import com.ai.cloud.skywalking.plugin.interceptor.MethodMatcher;
|
||||
import com.ai.cloud.skywalking.plugin.interceptor.matcher.SimpleMethodMatcher;
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
package org.skywalking.httpClient.v4.plugin.define;
|
||||
package com.ai.cloud.skywalking.httpClient.v4.plugin.define;
|
||||
|
||||
import org.skywalking.httpClient.v4.plugin.HttpClientExecuteInterceptor;
|
||||
import com.ai.cloud.skywalking.httpClient.v4.plugin.HttpClientExecuteInterceptor;
|
||||
|
||||
import com.ai.cloud.skywalking.plugin.interceptor.enhance.ClassInstanceMethodsEnhancePluginDefine;
|
||||
import com.ai.cloud.skywalking.plugin.interceptor.enhance.IntanceMethodsAroundInterceptor;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package org.skywalking.httpClient.v4.plugin.define;
|
||||
package com.ai.cloud.skywalking.httpClient.v4.plugin.define;
|
||||
|
||||
import com.ai.cloud.skywalking.plugin.interceptor.MethodMatcher;
|
||||
import com.ai.cloud.skywalking.plugin.interceptor.matcher.SimpleMethodMatcher;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package org.skywalking.httpClient.v4.plugin.define;
|
||||
package com.ai.cloud.skywalking.httpClient.v4.plugin.define;
|
||||
|
||||
import com.ai.cloud.skywalking.plugin.interceptor.MethodMatcher;
|
||||
import com.ai.cloud.skywalking.plugin.interceptor.matcher.SimpleMethodMatcher;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
org.skywalking.httpClient.v4.plugin.define.AbstractHttpClientPluginDefine
|
||||
org.skywalking.httpClient.v4.plugin.define.InternalHttpClientPluginDefine
|
||||
org.skywalking.httpClient.v4.plugin.define.MinimalHttpClientPluginDefine
|
||||
org.skywalking.httpClient.v4.plugin.define.DefaultRequestDirectorPluginDefine
|
||||
AbstractHttpClientPluginDefine
|
||||
InternalHttpClientPluginDefine
|
||||
MinimalHttpClientPluginDefine
|
||||
DefaultRequestDirectorPluginDefine
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
package org.skywalking.httpClient.v4.plugin;
|
||||
package com.ai.cloud.skywalking.httpClient.v4.plugin;
|
||||
|
||||
import com.ai.cloud.skywalking.plugin.TracingBootstrap;
|
||||
import com.ai.skywalking.testframework.api.RequestSpanAssert;
|
||||
|
|
@ -20,7 +20,7 @@ import java.sql.SQLException;
|
|||
public class TestHttpClientV42 {
|
||||
@Test
|
||||
public void testsql() throws IllegalAccessException, IllegalArgumentException, InvocationTargetException, NoSuchMethodException, SecurityException, ClassNotFoundException {
|
||||
TracingBootstrap.main(new String[] {"org.skywalking.httpClient.v4.plugin.TestHttpClientV42"});
|
||||
TracingBootstrap.main(new String[] {"TestHttpClientV42"});
|
||||
}
|
||||
|
||||
public static void main(String[] args) throws ClassNotFoundException, SQLException, InterruptedException, ClientProtocolException, IOException {
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package org.skywalking.httpClient.v4.plugin;
|
||||
package com.ai.cloud.skywalking.httpClient.v4.plugin;
|
||||
|
||||
import com.ai.cloud.skywalking.plugin.TracingBootstrap;
|
||||
import com.ai.skywalking.testframework.api.RequestSpanAssert;
|
||||
|
|
@ -17,7 +17,7 @@ import java.sql.SQLException;
|
|||
public class TestHttpClientV43 {
|
||||
@Test
|
||||
public void testsql() throws IllegalAccessException, IllegalArgumentException, InvocationTargetException, NoSuchMethodException, SecurityException, ClassNotFoundException {
|
||||
TracingBootstrap.main(new String[] {"org.skywalking.httpClient.v4.plugin.TestHttpClientV43"});
|
||||
TracingBootstrap.main(new String[] {"TestHttpClientV43"});
|
||||
}
|
||||
|
||||
public static void main(String[] args) throws ClassNotFoundException, SQLException, InterruptedException {
|
||||
Loading…
Reference in New Issue