diff options
| author | lifengchao <[email protected]> | 2024-01-23 10:53:43 +0800 |
|---|---|---|
| committer | lifengchao <[email protected]> | 2024-01-23 10:53:43 +0800 |
| commit | 3787c3d3638d26a9a36b8c8de090d59385ca2d4b (patch) | |
| tree | 32f06e5bc7f84aacd61f83fe717b6cf0bfce35e9 /groot-formats | |
| parent | 8c29a164536c36d1d133260eb08bc259a2cdeee7 (diff) | |
[feature][format-protobuf] groot-shaded实现改为简便方式。
Diffstat (limited to 'groot-formats')
| -rw-r--r-- | groot-formats/format-protobuf/pom.xml | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/groot-formats/format-protobuf/pom.xml b/groot-formats/format-protobuf/pom.xml index 7f77507..141706c 100644 --- a/groot-formats/format-protobuf/pom.xml +++ b/groot-formats/format-protobuf/pom.xml @@ -22,17 +22,19 @@ <artifactId>protobuf-java</artifactId>
<version>${protobuf.version}</version>
</dependency>-->
- <!--<dependency>
- <groupId>com.geedgenetworks</groupId>
- <artifactId>protobuf-shaded</artifactId>
- <version>${protobuf.version}</version>
- </dependency>-->
+ <!--
+ -->
<dependency>
<groupId>com.geedgenetworks</groupId>
- <artifactId>protobuf-shade</artifactId>
- <version>${protobuf.version}</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/../../lib/protobuf-shaded-3.23.4.jar</systemPath>
+ <artifactId>protobuf-shaded</artifactId>
+ <version>${version}</version>
+ <classifier>optional</classifier>
+ <exclusions>
+ <exclusion>
+ <groupId>com.google.protobuf</groupId>
+ <artifactId>protobuf-java</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>org.apache.flink</groupId>
|
