From f44beda912b6514caf41f1489e96474e96f5757d Mon Sep 17 00:00:00 2001 From: wanglihui <949764788@qq.com> Date: Thu, 6 Aug 2020 16:47:17 +0800 Subject: [PATCH] =?UTF-8?q?IP=20Learning=20tsg=E9=A1=B9=E7=9B=AE=20spark?= =?UTF-8?q?=E7=89=88=E6=9C=AC=E9=A6=96=E6=AC=A1=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ip-learning-spark/.gitignore | 1 - ip-learning-spark/pom.xml | 154 +++++++++++++++++++++++++++++++++++ 2 files changed, 154 insertions(+), 1 deletion(-) create mode 100644 ip-learning-spark/pom.xml diff --git a/ip-learning-spark/.gitignore b/ip-learning-spark/.gitignore index f5a5d20..5b9ff5c 100644 --- a/ip-learning-spark/.gitignore +++ b/ip-learning-spark/.gitignore @@ -7,7 +7,6 @@ *.iml target logs/ -pom.xml spark-warehouse/ src/main/java/cn/ac/iie/config/ src/test/java/ diff --git a/ip-learning-spark/pom.xml b/ip-learning-spark/pom.xml new file mode 100644 index 0000000..204fa68 --- /dev/null +++ b/ip-learning-spark/pom.xml @@ -0,0 +1,154 @@ + + + 4.0.0 + + cn.ac.iie + ip-learning-spark + 1.0-SNAPSHOT + + + javax.servlet + javax.servlet-api + 3.0.1 + + + + org.apache.httpcomponents + httpclient + 4.5.2 + + + + + org.apache.httpcomponents + httpcore + 4.4.6 + + + + com.google.guava + guava + 19.0 + + + + org.apache.spark + spark-core_2.11 + 2.2.3 + + + + org.apache.spark + spark-sql_2.11 + 2.2.3 + + + + ru.yandex.clickhouse + clickhouse-jdbc + 0.1.54 + + + + com.typesafe + config + 1.2.1 + + + + com.arangodb + arangodb-java-driver + 6.6.3 + + + + org.scala-lang + scala-library + 2.11.8 + + + + net.alchim31.maven + scala-maven-plugin + 3.2.0 + + + + + org.scala-tools + maven-scala-plugin + 2.15.2 + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.2 + + 1.8 + 1.8 + UTF-8 + + + + compile + + compile + + + + + + + net.alchim31.maven + scala-maven-plugin + 3.2.1 + + + scala-compile-first + process-resources + + add-source + compile + + + + + + + org.apache.maven.plugins + maven-assembly-plugin + 2.6 + + + + cn.ac.iie.config.ApplicationConfig + + + + jar-with-dependencies + + + + + make-assembly + package + + single + + + + + + + + + + \ No newline at end of file