You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ta...@apache.org on 2018/12/09 03:27:20 UTC

[incubator-skywalking] branch master updated: No need to dependency to elasticsearch. (#2024)

This is an automated email from the ASF dual-hosted git repository.

tanjian pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-skywalking.git


The following commit(s) were added to refs/heads/master by this push:
     new c12cfa5  No need to dependency to elasticsearch. (#2024)
c12cfa5 is described below

commit c12cfa58167dc8ace1e210291cefd50547c8a080
Author: 彭勇升 pengys <80...@qq.com>
AuthorDate: Sun Dec 9 11:27:16 2018 +0800

    No need to dependency to elasticsearch. (#2024)
---
 .../cluster-kubernetes-plugin/pom.xml                 | 19 ++-----------------
 1 file changed, 2 insertions(+), 17 deletions(-)

diff --git a/oap-server/server-cluster-plugin/cluster-kubernetes-plugin/pom.xml b/oap-server/server-cluster-plugin/cluster-kubernetes-plugin/pom.xml
index 4b40e2a..41c5aa3 100644
--- a/oap-server/server-cluster-plugin/cluster-kubernetes-plugin/pom.xml
+++ b/oap-server/server-cluster-plugin/cluster-kubernetes-plugin/pom.xml
@@ -17,7 +17,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">
+<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">
     <parent>
         <artifactId>server-cluster-plugin</artifactId>
         <groupId>org.apache.skywalking</groupId>
@@ -28,14 +29,6 @@
     <artifactId>cluster-kubernetes-plugin</artifactId>
     <packaging>jar</packaging>
 
-    <properties>
-        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-        <java.version>1.8</java.version>
-        <maven.compiler.source>${java.version}</maven.compiler.source>
-        <maven.compiler.target>${java.version}</maven.compiler.target>
-        <elasticsearch-client-transport.version>5.6.6</elasticsearch-client-transport.version>
-    </properties>
-
     <dependencies>
         <dependency>
             <groupId>org.apache.skywalking</groupId>
@@ -46,13 +39,5 @@
             <groupId>io.kubernetes</groupId>
             <artifactId>client-java</artifactId>
         </dependency>
-        <dependency>
-            <groupId>org.elasticsearch.client</groupId>
-            <artifactId>transport</artifactId>
-            <version>${elasticsearch-client-transport.version}</version>
-            <scope>provided</scope>
-        </dependency>
     </dependencies>
-
-
 </project>
\ No newline at end of file