Skip to content

Commit fa5f029

Browse files
StevenMPhillipsjacques-n
authored andcommitted
ARROW-1: Initial Arrow Code Commit
1 parent cbc56bf commit fa5f029

124 files changed

Lines changed: 22077 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

java/.gitignore

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
.project
2+
.buildpath
3+
.classpath
4+
.checkstyle
5+
.settings/
6+
.idea/
7+
TAGS
8+
*.log
9+
*.lck
10+
*.iml
11+
target/
12+
*.DS_Store
13+
*.patch
14+
*~
15+
git.properties
16+
contrib/native/client/build/
17+
contrib/native/client/build/*
18+
CMakeCache.txt
19+
CMakeFiles
20+
Makefile
21+
cmake_install.cmake
22+
install_manifest.txt

java/memory/pom.xml

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<?xml version="1.0"?>
2+
<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor
3+
license agreements. See the NOTICE file distributed with this work for additional
4+
information regarding copyright ownership. The ASF licenses this file to
5+
You under the Apache License, Version 2.0 (the "License"); you may not use
6+
this file except in compliance with the License. You may obtain a copy of
7+
the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
8+
by applicable law or agreed to in writing, software distributed under the
9+
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
10+
OF ANY KIND, either express or implied. See the License for the specific
11+
language governing permissions and limitations under the License. -->
12+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
13+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
14+
<modelVersion>4.0.0</modelVersion>
15+
<parent>
16+
<groupId>org.apache.arrow</groupId>
17+
<artifactId>arrow-java-root</artifactId>
18+
<version>0.1-SNAPSHOT</version>
19+
</parent>
20+
<artifactId>arrow-memory</artifactId>
21+
<name>arrow-memory</name>
22+
23+
<dependencies>
24+
25+
<dependency>
26+
<groupId>com.codahale.metrics</groupId>
27+
<artifactId>metrics-core</artifactId>
28+
<version>3.0.1</version>
29+
</dependency>
30+
31+
<dependency>
32+
<groupId>com.google.code.findbugs</groupId>
33+
<artifactId>jsr305</artifactId>
34+
<version>3.0.1</version>
35+
</dependency>
36+
37+
<dependency>
38+
<groupId>com.carrotsearch</groupId>
39+
<artifactId>hppc</artifactId>
40+
<version>0.7.1</version>
41+
</dependency>
42+
</dependencies>
43+
44+
45+
<build>
46+
</build>
47+
48+
49+
50+
</project>

0 commit comments

Comments
 (0)