2023-09-16 16:25:28 +00:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2023-12-31 06:55:24 +00:00
|
|
|
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>
|
2023-09-16 16:25:28 +00:00
|
|
|
|
2023-12-31 06:55:24 +00:00
|
|
|
<groupId>com.zeekling.cn</groupId>
|
|
|
|
<artifactId>test</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<packaging>jar</packaging>
|
2023-09-16 16:25:28 +00:00
|
|
|
|
2023-12-31 06:55:24 +00:00
|
|
|
<name>java_test</name>
|
2023-09-16 16:25:28 +00:00
|
|
|
|
2023-12-31 06:55:24 +00:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
</properties>
|
2023-09-16 16:25:28 +00:00
|
|
|
|
2023-12-31 06:55:24 +00:00
|
|
|
<dependencies>
|
2023-09-16 16:25:28 +00:00
|
|
|
|
2023-12-31 06:55:24 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.rocksdb</groupId>
|
|
|
|
<artifactId>rocksdbjni</artifactId>
|
|
|
|
<version>6.20.3</version>
|
|
|
|
</dependency>
|
2023-09-16 16:25:28 +00:00
|
|
|
|
2023-12-31 06:55:24 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
<artifactId>hadoop-common</artifactId>
|
|
|
|
<version>3.3.6</version>
|
|
|
|
</dependency>
|
2023-10-28 15:28:46 +00:00
|
|
|
|
2023-12-31 06:55:24 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.13.2</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<version>3.1.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>uncompress</id>
|
|
|
|
<phase>install</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>exec</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<executable>${basedir}/src/main/native/build.sh</executable>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.8.1</version>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2023-09-16 16:25:28 +00:00
|
|
|
</project>
|