Skip to content
Snippets Groups Projects
Commit 11834614 authored by Sören Henning's avatar Sören Henning
Browse files

Fix Flink dependency conflict

parent 219815ab
No related branches found
No related tags found
No related merge requests found
Pipeline #6621 passed
......@@ -13,8 +13,10 @@ repositories {
}
dependencies {
implementation('org.industrial-devops:titan-ccp-common:0.1.0-SNAPSHOT') { changing = true }
implementation('org.industrial-devops:titan-ccp-common-kafka:0.1.0-SNAPSHOT') { changing = true }
// Make this implementation once this is a local subproject.
// Currently, Flink needs its own version of these dependencies.
compileOnly('org.industrial-devops:titan-ccp-common:0.1.0-SNAPSHOT') { changing = true }
compileOnly('org.industrial-devops:titan-ccp-common-kafka:0.1.0-SNAPSHOT') { changing = true }
implementation 'com.google.code.gson:gson:2.8.9'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment