From c391fbffbace28a4227fdf44d2336b569c02360d Mon Sep 17 00:00:00 2001 From: wanglihui <949764788@qq.com> Date: Thu, 6 Aug 2020 16:42:35 +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 | 10 +++ ip-learning-spark/pom.xml | 154 +++++++++++++++++++++++++++++++++++ 2 files changed, 164 insertions(+) create mode 100644 ip-learning-spark/.gitignore create mode 100644 ip-learning-spark/pom.xml diff --git a/ip-learning-spark/.gitignore b/ip-learning-spark/.gitignore new file mode 100644 index 0000000..e13556e --- /dev/null +++ b/ip-learning-spark/.gitignore @@ -0,0 +1,10 @@ +# Created by .ignore support plugin (hsz.mobi) +### Example user template template +### Example user template + +# IntelliJ project files +.idea +*.iml +target +logs/ +spark-warehouse/ 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