diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b41da85 --- /dev/null +++ b/.gitignore @@ -0,0 +1,31 @@ +*.class + +# Mobile Tools for Java (J2ME) +.mtj.tmp/ + +# Package Files # +*.war +*.ear + +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +hs_err_pid* + +# Build +target/ +build/ + +# User-specific stuff: +.idea/workspace.xml +.idea/tasks.xml +.idea/dictionaries + +# Sensitive or high-churn files: +.idea/dataSources.ids +.idea/dataSources.xml +.idea/sqlDataSources.xml +.idea/dynamic.xml +.idea/uiDesigner.xml + +# Gradle: +.idea/gradle.xml +.idea/libraries diff --git a/README.md b/README.md new file mode 100644 index 0000000..ebb0c20 --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +# sequencefile-examples + +A collection of examples of working with sequence files + +Setup: +------ + +* Clone the project +``` +cd /tmp && git clone https://github.com/sakserv/sequencefile-examples.git +``` diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..efb2c7c --- /dev/null +++ b/pom.xml @@ -0,0 +1,208 @@ + + 4.0.0 + + com.github.sakserv + sequencefile-examples + 0.0.1-SNAPSHOT + jar + + + UTF-8 + 0.0.12 + 2.6.0.2.2.0.0-2041 + 6.1.26 + + + + + + true + + + false + + clojars.org + http://clojars.org/repo + + + + true + + + false + + central + http://repo1.maven.org/maven2/ + + + hortonworks + http://repo.hortonworks.com/content/repositories/releases/ + + + + + + com.github.sakserv + hadoop-mini-clusters + ${hadoop-mini-clusters.version} + test + + + org.apache.hadoop + hadoop-client + ${hadoop.version} + + + org.slf4j + slf4j-log4j12 + + + org.slf4j + slf4j-api + + + org.slf4j + log4j-over-slf4j + + + log4j + log4j + + + + + org.apache.hadoop + hadoop-hdfs + ${hadoop.version} + + + org.slf4j + slf4j-log4j12 + + + org.slf4j + slf4j-api + + + org.slf4j + log4j-over-slf4j + + + log4j + log4j + + + + + org.apache.hadoop + hadoop-minicluster + ${hadoop.version} + + + org.slf4j + slf4j-log4j12 + + + org.slf4j + slf4j-api + + + org.slf4j + log4j-over-slf4j + + + log4j + log4j + + + + + org.mortbay.jetty + jetty + ${jetty.version} + provided + + + org.mortbay.jetty + jetty-util + ${jetty.version} + provided + + + + + src/main/java + test/main/java + + + src/main/resources + + + + + + + org.apache.maven.plugins + maven-shade-plugin + 1.4 + + true + + + *:* + + META-INF/*.SF + META-INF/*.DSA + META-INF/*.RSA + + + + + + + package + + shade + + + + + + + + + + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.18 + + pertest + -Xms4g -Xmx4g -XX:MaxPermSize=1024M + false + false + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.2 + + 1.7 + 1.7 + + + + + +