Skip to content
Merged
Show file tree
Hide file tree
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
chore: version issues
  • Loading branch information
lavkesh committed Mar 24, 2023
commit 52e634b7314b97112dc20c298a0bf1c32994df5c
2 changes: 1 addition & 1 deletion dagger-common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ dependencies {
compileOnly group: 'org.apache.flink', name: 'flink-table', version: flinkVersion
compileOnly group: 'org.apache.flink', name: 'flink-table-api-java-bridge_2.11', version: flinkVersion
compileOnly group: 'org.apache.flink', name: 'flink-connector-kafka_2.11', version: flinkVersion
compileOnly 'com.gotocompany:stencil:0.4.0'

dependenciesCommonJar ('org.apache.hadoop:hadoop-client:2.8.3') {
exclude module:"commons-cli"
Expand All @@ -66,7 +67,6 @@ dependencies {
dependenciesCommonJar 'com.google.cloud.bigdataoss:gcs-connector:1.9.0-hadoop2'
dependenciesCommonJar 'org.apache.flink:flink-metrics-dropwizard:' + flinkVersion
dependenciesCommonJar 'org.apache.flink:flink-json:' + flinkVersion
dependenciesCommonJar 'com.gotocompany:stencil:0.4.0'
dependenciesCommonJar 'com.jayway.jsonpath:json-path:2.4.0'
dependenciesCommonJar 'com.google.code.gson:gson:2.8.2'
dependenciesCommonJar 'org.apache.parquet:parquet-column:1.12.2'
Expand Down
5 changes: 3 additions & 2 deletions dagger-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def flinkVersion = rootProject.flinkVersion
version = rootProject.file('version.txt').text.trim()

def minimalVersion = version
def dependenciesVersion = "0.3.1"
def dependenciesVersion = "0.3.2"

description = """dagger to the heart!"""

Expand Down Expand Up @@ -63,9 +63,9 @@ dependencies {
minimalJar project(path: ':dagger-functions', configuration: 'minimalFunctionsJar')
minimalJar('com.gotocompany:depot:0.4.0') {
exclude group: 'org.apache.httpcomponents'
exclude module: 'stencil', group: 'com.gotocompany'
exclude group: 'com.google.protobuf'
exclude group: 'com.datadoghq'
exclude group: 'com.google.cloud.bigtable'
}
compileOnly 'org.projectlombok:lombok:1.18.8'
annotationProcessor 'org.projectlombok:lombok:1.18.8'
Expand All @@ -76,6 +76,7 @@ dependencies {
implementation 'org.apache.flink:flink-table:' + flinkVersion
implementation 'org.apache.flink:flink-table-api-java-bridge_2.11:' + flinkVersion
implementation 'org.apache.flink:flink-table-planner_2.11:' + flinkVersion
implementation 'com.gotocompany:stencil:0.4.0'

dependenciesJar project(path: ':dagger-common', configuration: 'dependenciesCommonJar')
dependenciesJar project(path: ':dagger-functions', configuration: 'dependenciesFunctionsJar')
Expand Down
1 change: 1 addition & 0 deletions dagger-functions/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ dependencies {
compileOnly group: 'org.apache.flink', name: 'flink-table-api-java-bridge_2.11', version: flinkVersion
compileOnly group: 'org.apache.flink', name: 'flink-streaming-java_2.11', version: flinkVersion
compileOnly group: 'org.apache.flink', name: 'flink-metrics-dropwizard', version: flinkVersion
compileOnly 'com.gotocompany:stencil:0.4.0'

dependenciesFunctionsJar 'com.github.davidmoten:geo:0.7.6'
dependenciesFunctionsJar 'org.apache.flink:flink-python_2.11:' + flinkVersion
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.1
0.9.2