Skip to content

Commit 8a3b4d9

Browse files
committed
maven build
1 parent 35754f2 commit 8a3b4d9

File tree

196 files changed

+3100
-3975
lines changed

Some content is hidden

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

196 files changed

+3100
-3975
lines changed

.classpath

Lines changed: 6 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
3-
<classpathentry kind="src" path="src"/>
4-
<classpathentry kind="src" path="test"/>
5-
<classpathentry kind="lib" path="lib/ant-contrib-1.0b3.jar"/>
6-
<classpathentry kind="lib" path="lib/commons-logging-1.0.4.jar"/>
7-
<classpathentry kind="lib" path="lib/commons-net-1.4.1.jar"/>
8-
<classpathentry kind="lib" path="lib/hadoop-common-0.21.0.jar" sourcepath="/home/sgoyal/hadoop-0.21.0/common/src"/>
9-
<classpathentry kind="lib" path="lib/hadoop-common-test-0.21.0.jar"/>
10-
<classpathentry kind="lib" path="lib/hadoop-hdfs-0.21.0-sources.jar"/>
11-
<classpathentry kind="lib" path="lib/hadoop-hdfs-0.21.0.jar"/>
12-
<classpathentry kind="lib" path="lib/hadoop-hdfs-ant-0.21.0.jar"/>
13-
<classpathentry kind="lib" path="lib/hadoop-hdfs-test-0.21.0-sources.jar"/>
14-
<classpathentry kind="lib" path="lib/hadoop-hdfs-test-0.21.0.jar"/>
15-
<classpathentry kind="lib" path="lib/hadoop-mapred-0.21.0-sources.jar"/>
16-
<classpathentry kind="lib" path="lib/hadoop-mapred-0.21.0.jar" sourcepath="/home/sgoyal/hadoop-0.21.0/mapred/src/java"/>
17-
<classpathentry kind="lib" path="lib/hadoop-mapred-examples-0.21.0.jar"/>
18-
<classpathentry kind="lib" path="lib/hadoop-mapred-test-0.21.0.jar" sourcepath="/home/sgoyal/hadoop-0.21.0/mapred/src/test"/>
19-
<classpathentry kind="lib" path="lib/hadoop-mapred-tools-0.21.0.jar"/>
20-
<classpathentry kind="lib" path="lib/ivy-2.2.0.jar"/>
21-
<classpathentry kind="lib" path="lib/jackson-core-asl-1.4.0.jar"/>
22-
<classpathentry kind="lib" path="lib/jackson-mapper-asl-1.4.0.jar"/>
23-
<classpathentry kind="lib" path="lib/junit-4.5.jar"/>
24-
<classpathentry kind="lib" path="lib/log4j-1.2.15.jar"/>
25-
<classpathentry kind="lib" path="lib/mockito-all-1.8.1.jar"/>
26-
<classpathentry kind="lib" path="lib/mockito-core-1.8.1.jar"/>
27-
<classpathentry kind="lib" path="lib/mysql-connector-java-5.1.13.jar"/>
28-
<classpathentry kind="lib" path="lib/partner-20.jar"/>
29-
<classpathentry kind="lib" path="lib/wsc-20.jar"/>
30-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
31-
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
32-
<classpathentry kind="lib" path="/home/sgoyal/hadoop-0.21.0/lib/jetty-6.1.14.jar"/>
33-
<classpathentry kind="lib" path="/home/sgoyal/hadoop-0.21.0/lib/jetty-util-6.1.14.jar"/>
34-
<classpathentry kind="lib" path="/home/sgoyal/hadoop-0.21.0/lib/servlet-api-2.5-6.1.14.jar"/>
35-
<classpathentry kind="lib" path="/home/sgoyal/hadoop-0.21.0/lib/jsp-2.1-6.1.14.jar"/>
36-
<classpathentry kind="lib" path="/home/sgoyal/hadoop-0.21.0/lib/jsp-api-2.1-6.1.14.jar"/>
37-
<classpathentry kind="lib" path="/home/sgoyal/hadoop-0.21.0/lib/commons-httpclient-3.1.jar"/>
38-
<classpathentry kind="lib" path="/home/sgoyal/hadoop-0.21.0/lib/hsqldb-1.8.0.10.jar"/>
39-
<classpathentry kind="lib" path="/home/sgoyal/hadoop-0.21.0/lib/commons-cli-1.2.jar"/>
40-
<classpathentry kind="lib" path="lib/avro-1.4.1.jar"/>
41-
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/Pig0.7"/>
42-
<classpathentry kind="output" path="build/classes"/>
3+
<classpathentry kind="src" output="target/classes" path="src/main/java"/>
4+
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources"/>
5+
<classpathentry kind="src" output="target/test-classes" path="src/test/java"/>
6+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
7+
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER"/>
8+
<classpathentry kind="output" path="target/classes"/>
439
</classpath>

.compileIssues.txt.swp

16 KB
Binary file not shown.

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
compileIssues.txt
2+
target/**

.project

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,14 @@
2525
</dictionary>
2626
</arguments>
2727
</buildCommand>
28+
<buildCommand>
29+
<name>org.eclipse.m2e.core.maven2Builder</name>
30+
<arguments>
31+
</arguments>
32+
</buildCommand>
2833
</buildSpec>
2934
<natures>
35+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
3036
<nature>org.eclipse.jdt.core.javanature</nature>
3137
</natures>
3238
</projectDescription>

.settings/org.eclipse.jdt.core.prefs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#Mon Oct 11 17:50:14 IST 2010
21
eclipse.preferences.version=1
32
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
43
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
@@ -9,4 +8,5 @@ org.eclipse.jdt.core.compiler.debug.localVariable=generate
98
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
109
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
1110
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
11+
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
1212
org.eclipse.jdt.core.compiler.source=1.6
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
activeProfiles=
2+
eclipse.preferences.version=1
3+
resolveWorkspaceProjects=true
4+
version=1

build.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,13 @@
217217
<ivy:cachepath pathid="${name}.hive.classpath" />
218218
</target>
219219

220+
<target name="makepom">
221+
<ivy:makepom ivyfile="${basedir}/ivy.xml" pomfile="${basedir}/pom.xml" conf="default,runtime">
222+
<mapping conf="default" scope="compile"/>
223+
<mapping conf="runtime" scope="runtime"/>
224+
225+
</ivy:makepom>
226+
</target>
220227

221228
<!-- Compile core classes for the project -->
222229
<target name="compile" depends="init, ivy-retrieve-hadoop,ivy-retrieve-hive,ivy-resolve-pig" description="Compile core classes for the project">

ivy.xml

Lines changed: 0 additions & 116 deletions
This file was deleted.

ivy/ivy-2.0.0-rc2.jar

-872 KB
Binary file not shown.

ivy/ivy-2.1.0.jar

-890 KB
Binary file not shown.

0 commit comments

Comments
 (0)