Skip to content
Closed
Show file tree
Hide file tree
Changes from 11 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 java/memory/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>3.0.1</version>
<version>3.0.2</version>
</dependency>

<dependency>
<groupId>com.carrotsearch</groupId>
<artifactId>hppc</artifactId>
<version>0.7.1</version>
<version>0.7.2</version>
</dependency>
</dependencies>

Expand Down
10 changes: 5 additions & 5 deletions java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<dep.guava.version>18.0</dep.guava.version>
<forkCount>2</forkCount>
<jackson.version>2.7.1</jackson.version>
<hadoop.version>2.7.1</hadoop.version>
<!--<hadoop.version>2.7.1</hadoop.version>-->
<checkstyle.failOnViolation>false</checkstyle.failOnViolation>
</properties>

Expand Down Expand Up @@ -454,7 +454,7 @@
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
<version>4.0.41.Final</version>
<version>4.0.49.Final</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -495,7 +495,7 @@
<!-- JMockit needs to be on class path before JUnit. -->
<groupId>com.googlecode.jmockit</groupId>
<artifactId>jmockit</artifactId>
<version>1.3</version>
<version>1.7</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -507,7 +507,7 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>1.9.5</version>
<version>2.7.22</version>
<scope>test</scope>
<!-- Mockito contains old Hamcrest classes, causes issues with JUNIT -->
<exclusions>
Expand All @@ -526,7 +526,7 @@
<dependency>
<groupId>de.huxhorn.lilith</groupId>
<artifactId>de.huxhorn.lilith.logback.appender.multiplex-classic</artifactId>
<version>0.9.44</version>
<version>8.1.1</version>

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

does this support java 7?

<scope>test</scope>
</dependency>

Expand Down
4 changes: 2 additions & 2 deletions java/tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.4</version>
<version>3.6</version>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.2</version>
<version>1.4</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
Expand Down
6 changes: 3 additions & 3 deletions java/vector/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>2.9</version>
<version>2.9.9</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
Expand All @@ -49,12 +49,12 @@
<dependency>
<groupId>com.carrotsearch</groupId>
<artifactId>hppc</artifactId>
<version>0.7.1</version>
<version>0.7.2</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.4</version>
<version>3.6</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
*/
package org.apache.arrow.vector;

import java.util.Collections;
import java.util.Iterator;

import com.google.flatbuffers.FlatBufferBuilder;
Expand Down Expand Up @@ -99,7 +100,7 @@ public void reset() {}

@Override
public Iterator<ValueVector> iterator() {
return Iterators.emptyIterator();
return Collections.emptyIterator();
}

public static boolean checkBufRefs(final ValueVector vv) {
Expand Down