Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[UT]: fix flink shaded guava class not found error in ut #336

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,12 @@ limitations under the License.
<artifactId>flink-sql-connector-mysql-cdc</artifactId>
<version>2.4.1</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>flink-shaded-guava</artifactId>
<groupId>org.apache.flink</groupId>
</exclusion>
</exclusions>
</dependency>

<!--Following dependencies are mainly used for tests of kafka -> starrocks pipelines, and copied from flink-->
Expand Down Expand Up @@ -322,6 +328,7 @@ limitations under the License.
<version>4.12</version>
<scope>test</scope>
</dependency>

</dependencies>

<build>
Expand Down
Loading