Skip to content

Commit

Permalink
[hotfix][dist] Include flink-gs-fs-hadoop into flink-dist
Browse files Browse the repository at this point in the history
  • Loading branch information
xintongsong committed Jan 26, 2022
1 parent 7962a5d commit d1b6cf6
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
17 changes: 17 additions & 0 deletions flink-dist/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -421,6 +421,23 @@ under the License.
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-gs-fs-hadoop</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
<exclusions>
<!--
Despite at provided scope, grpc artifacts can cause dependency resolving errors,
unstably, during javadoc aggregation.
-->
<exclusion>
<groupId>io.grpc</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-queryable-state-runtime</artifactId>
Expand Down
7 changes: 7 additions & 0 deletions flink-dist/src/main/assemblies/opt.xml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,13 @@
<fileMode>0644</fileMode>
</file>

<file>
<source>../flink-filesystems/flink-gs-fs-hadoop/target/flink-gs-fs-hadoop-${project.version}.jar</source>
<outputDirectory>opt/</outputDirectory>
<destName>flink-gs-fs-hadoop-${project.version}.jar</destName>
<fileMode>0644</fileMode>
</file>

<!-- Queryable State -->
<file>
<source>../flink-queryable-state/flink-queryable-state-runtime/target/flink-queryable-state-runtime-${project.version}.jar</source>
Expand Down

0 comments on commit d1b6cf6

Please sign in to comment.