2022-05-22 17:40:43 +00:00
|
|
|
<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>
|
2022-05-16 16:18:26 +00:00
|
|
|
|
2022-05-22 17:40:43 +00:00
|
|
|
<groupId>com.yuandian.dataflow</groupId>
|
|
|
|
<artifactId>dataflow</artifactId>
|
2022-06-17 10:48:10 +00:00
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2022-05-22 17:40:43 +00:00
|
|
|
<packaging>jar</packaging>
|
2022-05-16 16:18:26 +00:00
|
|
|
|
2022-05-22 17:40:43 +00:00
|
|
|
<name>dataflow</name>
|
|
|
|
<url>http://maven.apache.org</url>
|
2022-05-16 16:18:26 +00:00
|
|
|
|
2022-05-22 17:40:43 +00:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2022-06-05 17:02:55 +00:00
|
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
|
|
<java.version>17</java.version>
|
2022-05-17 16:56:52 +00:00
|
|
|
|
|
|
|
<protobuf.version>3.20.1</protobuf.version>
|
|
|
|
<protostuff.version>1.7.4</protostuff.version>
|
2022-05-22 17:40:43 +00:00
|
|
|
<javax.annotation.version>1.3.2</javax.annotation.version>
|
2022-05-29 17:03:03 +00:00
|
|
|
<ratis.version>2.3.0</ratis.version>
|
2022-05-22 17:40:43 +00:00
|
|
|
<grpc.version>1.46.0</grpc.version>
|
|
|
|
<slf4j.version>1.7.36</slf4j.version>
|
|
|
|
<jraft.version>1.3.10</jraft.version>
|
2022-06-17 10:48:10 +00:00
|
|
|
<spring.boot.version>2.7.0</spring.boot.version>
|
2022-06-05 17:02:55 +00:00
|
|
|
<mongo.driver.version>3.12.11</mongo.driver.version>
|
2022-06-13 09:45:24 +00:00
|
|
|
<nacos.version>2.1.0</nacos.version>
|
2022-06-14 10:17:01 +00:00
|
|
|
<snakeyaml.version>1.30</snakeyaml.version>
|
2022-06-17 10:48:10 +00:00
|
|
|
|
|
|
|
<yuandian.common.config.version>1.0.0-SNAPSHOT</yuandian.common.config.version>
|
2022-05-22 17:40:43 +00:00
|
|
|
</properties>
|
2022-05-17 16:56:52 +00:00
|
|
|
|
2022-05-22 17:40:43 +00:00
|
|
|
<dependencies>
|
2022-06-19 17:06:07 +00:00
|
|
|
|
2022-06-05 17:02:55 +00:00
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
|
|
<version>5.8.2</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2022-06-17 10:48:10 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.yuandian.common</groupId>
|
|
|
|
<artifactId>config</artifactId>
|
|
|
|
<version>${yuandian.common.config.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2022-05-22 17:40:43 +00:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<version>${slf4j.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2022-06-14 10:17:01 +00:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.yaml</groupId>
|
|
|
|
<artifactId>snakeyaml</artifactId>
|
|
|
|
<version>${snakeyaml.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
2022-05-22 17:40:43 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.alipay.sofa</groupId>
|
|
|
|
<artifactId>jraft-core</artifactId>
|
|
|
|
<version>${jraft.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2022-06-05 17:02:55 +00:00
|
|
|
|
2022-05-29 17:03:03 +00:00
|
|
|
<dependency>
|
2022-06-05 17:02:55 +00:00
|
|
|
<groupId>org.mongodb</groupId>
|
|
|
|
<artifactId>mongo-java-driver</artifactId>
|
|
|
|
<version>${mongo.driver.version}</version>
|
2022-05-29 17:03:03 +00:00
|
|
|
</dependency>
|
|
|
|
|
2022-05-22 17:40:43 +00:00
|
|
|
|
2022-06-05 17:02:55 +00:00
|
|
|
|
2022-05-22 17:40:43 +00:00
|
|
|
<dependency>
|
2022-06-01 10:43:01 +00:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
2022-06-17 10:48:10 +00:00
|
|
|
<version>${spring.boot.version}</version>
|
2022-05-22 17:40:43 +00:00
|
|
|
</dependency>
|
|
|
|
|
2022-06-01 10:43:01 +00:00
|
|
|
|
|
|
|
<!-- protobuf 依赖 -->
|
|
|
|
|
2022-05-22 17:40:43 +00:00
|
|
|
|
|
|
|
<dependency>
|
2022-05-17 16:56:52 +00:00
|
|
|
<groupId>javax.annotation</groupId>
|
|
|
|
<artifactId>javax.annotation-api</artifactId>
|
2022-05-22 17:40:43 +00:00
|
|
|
<version>${javax.annotation.version}</version>
|
2022-05-17 16:56:52 +00:00
|
|
|
</dependency>
|
|
|
|
|
2022-06-13 09:45:24 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba.nacos</groupId>
|
|
|
|
<artifactId>nacos-client</artifactId>
|
|
|
|
<version>${nacos.version}</version>
|
|
|
|
</dependency>
|
2022-05-22 17:40:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
<!-- 添加grpc相关依赖包 -->
|
2022-06-09 10:10:52 +00:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.protobuf</groupId>
|
|
|
|
<artifactId>protobuf-java</artifactId>
|
|
|
|
<version>${protobuf.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2022-05-17 16:56:52 +00:00
|
|
|
<groupId>io.grpc</groupId>
|
|
|
|
<artifactId>grpc-netty</artifactId>
|
2022-05-22 17:40:43 +00:00
|
|
|
<version>${grpc.version}</version>
|
2022-05-17 16:56:52 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.grpc</groupId>
|
|
|
|
<artifactId>grpc-protobuf</artifactId>
|
2022-05-22 17:40:43 +00:00
|
|
|
<version>${grpc.version}</version>
|
2022-05-17 16:56:52 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.grpc</groupId>
|
|
|
|
<artifactId>grpc-stub</artifactId>
|
2022-05-22 17:40:43 +00:00
|
|
|
<version>${grpc.version}</version>
|
2022-05-17 16:56:52 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2022-05-22 17:40:43 +00:00
|
|
|
<groupId>io.grpc</groupId>
|
|
|
|
<artifactId>grpc-all</artifactId>
|
|
|
|
<version>${grpc.version}</version>
|
2022-06-09 10:10:52 +00:00
|
|
|
</dependency>
|
2022-05-22 17:40:43 +00:00
|
|
|
|
|
|
|
<!-- proto自动生成java文件所需的编译插件 -->
|
2022-06-05 17:02:55 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>1.18.24</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2022-05-22 17:40:43 +00:00
|
|
|
</dependencies>
|
|
|
|
|
2022-06-17 10:48:10 +00:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>yuandian-nexus</id>
|
|
|
|
<name>Team Nexus Repository</name>
|
|
|
|
<url>http://mvn.yuandian.com/repository/maven-public</url>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
<updatePolicy>always</updatePolicy>
|
|
|
|
</snapshots>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
<pluginRepositories>
|
|
|
|
<pluginRepository>
|
|
|
|
<id>yuandian-nexus</id>
|
|
|
|
<name>Team Nexus Repository</name>
|
|
|
|
<url>http://mvn.yuandian.com/repository/maven-public</url>
|
|
|
|
</pluginRepository>
|
|
|
|
</pluginRepositories>
|
2022-05-22 17:40:43 +00:00
|
|
|
|
2022-06-17 10:48:10 +00:00
|
|
|
<build>
|
2022-05-17 16:56:52 +00:00
|
|
|
<extensions>
|
|
|
|
<extension>
|
|
|
|
<groupId>kr.motd.maven</groupId>
|
|
|
|
<artifactId>os-maven-plugin</artifactId>
|
|
|
|
<version>1.7.0</version>
|
|
|
|
</extension>
|
|
|
|
</extensions>
|
|
|
|
|
|
|
|
<plugins>
|
2022-05-22 17:40:43 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>kr.motd.maven</groupId>
|
|
|
|
<artifactId>os-maven-plugin</artifactId>
|
|
|
|
<version>1.6.2</version>
|
|
|
|
</plugin>
|
2022-06-05 17:02:55 +00:00
|
|
|
|
2022-06-09 10:10:52 +00:00
|
|
|
<plugin>
|
2022-05-17 16:56:52 +00:00
|
|
|
<groupId>org.xolstice.maven.plugins</groupId>
|
|
|
|
<artifactId>protobuf-maven-plugin</artifactId>
|
|
|
|
<version>0.6.1</version>
|
2022-05-22 17:40:43 +00:00
|
|
|
<configuration>
|
2022-06-01 10:43:01 +00:00
|
|
|
|
2022-05-17 16:56:52 +00:00
|
|
|
<pluginId>grpc-java</pluginId>
|
2022-06-09 10:10:52 +00:00
|
|
|
<protocArtifact>com.google.protobuf:protoc:${protobuf.version}:exe:${os.detected.classifier}</protocArtifact>
|
|
|
|
<pluginArtifact>io.grpc:protoc-gen-grpc-java:${grpc.version}:exe:${os.detected.classifier}</pluginArtifact>
|
|
|
|
<outputDirectory>${basedir}/src/main/java</outputDirectory>
|
|
|
|
<clearOutputDirectory>false</clearOutputDirectory>
|
2022-05-17 16:56:52 +00:00
|
|
|
</configuration>
|
2022-06-05 17:02:55 +00:00
|
|
|
<executions>
|
2022-05-17 16:56:52 +00:00
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>compile</goal>
|
|
|
|
<goal>compile-custom</goal>
|
2022-05-22 17:40:43 +00:00
|
|
|
<goal>test-compile</goal>
|
2022-06-09 10:10:52 +00:00
|
|
|
<goal>test-compile-custom</goal>
|
2022-05-17 16:56:52 +00:00
|
|
|
</goals>
|
|
|
|
</execution>
|
2022-06-09 10:10:52 +00:00
|
|
|
|
2022-06-05 17:02:55 +00:00
|
|
|
</executions>
|
2022-06-09 10:10:52 +00:00
|
|
|
</plugin>
|
2022-06-01 10:43:01 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
2022-06-17 10:48:10 +00:00
|
|
|
<version>${spring.boot.version}</version>
|
2022-06-01 10:43:01 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>repackage</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2022-05-17 16:56:52 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2022-05-22 17:40:43 +00:00
|
|
|
</project>
|