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
|
|
|
|
|
2024-01-23 16:25:56 +00:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.protobuf</groupId>
|
|
|
|
|
<artifactId>protobuf-java</artifactId>
|
|
|
|
|
<version>3.19.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
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>
|
2024-01-23 16:25:56 +00:00
|
|
|
|
<extensions>
|
|
|
|
|
<extension>
|
|
|
|
|
<groupId>kr.motd.maven</groupId>
|
|
|
|
|
<artifactId>os-maven-plugin</artifactId>
|
|
|
|
|
<version>1.5.0.Final</version>
|
|
|
|
|
</extension>
|
|
|
|
|
</extensions>
|
2023-12-31 06:55:24 +00:00
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
<version>3.1.1</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
2024-01-22 16:34:54 +00:00
|
|
|
|
<id>buildJin</id>
|
|
|
|
|
<phase>compile</phase>
|
2023-12-31 06:55:24 +00:00
|
|
|
|
<goals>
|
|
|
|
|
<goal>exec</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
<configuration>
|
|
|
|
|
<executable>${basedir}/src/main/native/build.sh</executable>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2024-01-23 16:25:56 +00:00
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.xolstice.maven.plugins</groupId>
|
|
|
|
|
<artifactId>protobuf-maven-plugin</artifactId>
|
|
|
|
|
<version>0.5.0</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<protocArtifact>com.google.protobuf:protoc:3.6.1:exe:${os.detected.classifier}</protocArtifact>
|
|
|
|
|
<pluginId>protoc-java</pluginId>
|
|
|
|
|
<!--读取proto文件路径-->
|
|
|
|
|
<protoSourceRoot>${project.basedir}/src/main/java/com/zeekling/cn/rpc/protobuf/proto</protoSourceRoot>
|
|
|
|
|
<!--生产的java文件路径-->
|
|
|
|
|
<outputDirectory>${project.basedir}/target/generated-sources/protobuf</outputDirectory>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>compile</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
|
|
|
<version>1.4</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>add-source</id>
|
|
|
|
|
<phase>generate-sources</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>add-source</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<sources>
|
|
|
|
|
<source>${basedir}/target/generated-sources/protobuf</source>
|
|
|
|
|
<!-- 我们可以通过在这里添加多个source节点,来添加任意多个源文件夹 -->
|
|
|
|
|
</sources>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2023-12-31 06:55:24 +00:00
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<version>3.8.1</version>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
2023-09-16 16:25:28 +00:00
|
|
|
|
</project>
|