summaryrefslogtreecommitdiff
path: root/ip-learning-java-test/pom.xml
diff options
context:
space:
mode:
authorwanglihui <[email protected]>2020-06-28 18:29:39 +0800
committerwanglihui <[email protected]>2020-06-28 18:29:39 +0800
commit2c9ff1aa3c7394b5e6a3e10154b6c6b1d8814a8d (patch)
tree773812391be8d110940432536b0c13ce2e5df90e /ip-learning-java-test/pom.xml
parent9ffe686f3f41adc876fa9db7cc2d6f64f6a721f7 (diff)
first commit
Diffstat (limited to 'ip-learning-java-test/pom.xml')
-rw-r--r--ip-learning-java-test/pom.xml77
1 files changed, 77 insertions, 0 deletions
diff --git a/ip-learning-java-test/pom.xml b/ip-learning-java-test/pom.xml
new file mode 100644
index 0000000..73c4361
--- /dev/null
+++ b/ip-learning-java-test/pom.xml
@@ -0,0 +1,77 @@
+<?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>cn.ac.iie</groupId>
+ <artifactId>ip-learning-java-test</artifactId>
+ <version>1.0-SNAPSHOT</version>
+
+
+ <dependencies>
+ <dependency>
+ <groupId>ru.yandex.clickhouse</groupId>
+ <artifactId>clickhouse-jdbc</artifactId>
+ <version>0.2.4</version>
+ </dependency>
+
+ <dependency>
+ <groupId>com.alibaba</groupId>
+ <artifactId>druid</artifactId>
+ <version>1.1.10</version>
+ </dependency>
+
+ <dependency>
+ <groupId>com.typesafe</groupId>
+ <artifactId>config</artifactId>
+ <version>1.2.1</version>
+ </dependency>
+
+ <dependency>
+ <groupId>com.arangodb</groupId>
+ <artifactId>arangodb-java-driver</artifactId>
+ <version>4.2.2</version>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <version>2.6</version>
+ <configuration>
+ <archive>
+ <manifest>
+ <mainClass>cn.ac.iie.test.IpLearningApplicationTest</mainClass>
+ </manifest>
+ </archive>
+ <descriptorRefs>
+ <descriptorRef>jar-with-dependencies</descriptorRef>
+ </descriptorRefs>
+ </configuration>
+ <executions>
+ <execution>
+ <id>make-assembly</id>
+ <phase>package</phase>
+ <goals>
+ <goal>single</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>8</source>
+ <target>8</target>
+ </configuration>
+ </plugin>
+
+ </plugins>
+ </build>
+
+
+</project> \ No newline at end of file