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

upgrade arrow and gradle version #115

Closed
wants to merge 1 commit into from
Closed
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
4 changes: 2 additions & 2 deletions datafusion-examples/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ dependencies {
implementation project(':datafusion-java')
implementation 'org.slf4j:slf4j-api:2.0.9'
implementation 'ch.qos.logback:logback-classic:1.4.11'
implementation 'org.apache.arrow:arrow-format:13.0.0'
implementation 'org.apache.arrow:arrow-vector:13.0.0'
implementation 'org.apache.arrow:arrow-format:14.0.1'
implementation 'org.apache.arrow:arrow-vector:14.0.1'
}

application {
Expand Down
6 changes: 3 additions & 3 deletions datafusion-java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ plugins {

dependencies {
api 'org.slf4j:slf4j-api:2.0.9'
api 'org.apache.arrow:arrow-format:13.0.0'
api 'org.apache.arrow:arrow-vector:13.0.0'
api 'org.apache.arrow:arrow-format:14.0.1'
api 'org.apache.arrow:arrow-vector:14.0.1'
implementation 'org.apache.arrow:arrow-c-data:14.0.1'
runtimeOnly 'org.apache.arrow:arrow-memory-unsafe:14.0.0'
runtimeOnly 'org.apache.arrow:arrow-memory-unsafe:14.0.1'
testImplementation 'org.apache.arrow:arrow-compression:14.0.1'
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.0'
testImplementation 'org.apache.hadoop:hadoop-client:3.3.6'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ protected final void registerChild(AbstractProxy child) {
}

/**
* @return Whether the object has been closed
* Whether the object has been closed
* @return boolean value of closeness.
*/
protected final boolean isClosed() {
return closed.get();
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
Loading