Skip to content

Instantly share code, notes, and snippets.

@dajobe
Last active December 14, 2015 21:08
Show Gist options
  • Save dajobe/5148663 to your computer and use it in GitHub Desktop.
Save dajobe/5148663 to your computer and use it in GitHub Desktop.
parquet build log
$ git show-ref HEAD
bf1b4944a447de2bf5c39f9f910204da89ad1032 refs/remotes/origin/HEAD
$ java -version
java version "1.6.0_43"
Java(TM) SE Runtime Environment (build 1.6.0_43-b01-447-11M4203)
Java HotSpot(TM) 64-Bit Server VM (build 20.14-b01-447, mixed mode)
$ mvn test
[INFO] Scanning for projects...
[WARNING]
[WARNING] Some problems were encountered while building the effective model for com.twitter:parquet-column:jar:1.0.0-SNAPSHOT
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-jar-plugin is missing. @ line 32, column 15
[WARNING]
[WARNING] Some problems were encountered while building the effective model for com.twitter:parquet-pig:jar:1.0.0-SNAPSHOT
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-jar-plugin is missing. @ line 81, column 15
[WARNING]
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
[WARNING]
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
[WARNING]
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Build Order:
[INFO]
[INFO] Parquet MR
[INFO] Parquet Column
[INFO] Parquet Hadoop
[INFO] Parquet Pig
[INFO] Parquet Thrift
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Parquet MR 1.0.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Parquet Column 1.0.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ parquet-column ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /Users/dajobe/dev/redland/parquet/parquet-mr/parquet-column/src/main/resources
[INFO]
[INFO] --- maven-compiler-plugin:2.0.2:compile (default-compile) @ parquet-column ---
[INFO] Compiling 61 source files to /Users/dajobe/dev/redland/parquet/parquet-mr/parquet-column/target/classes
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO]
[INFO] Parquet MR ........................................ SUCCESS [0.097s]
[INFO] Parquet Column .................................... FAILURE [1.465s]
[INFO] Parquet Hadoop .................................... SKIPPED
[INFO] Parquet Pig ....................................... SKIPPED
[INFO] Parquet Thrift .................................... SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 1.748s
[INFO] Finished at: Tue Mar 12 18:25:22 PDT 2013
[INFO] Final Memory: 9M/81M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.0.2:compile (default-compile) on project parquet-column: Compilation failure: Compilation failure:
[ERROR] /Users/dajobe/dev/redland/parquet/parquet-mr/parquet-column/src/main/java/parquet/io/api/Binary.java:[67,15] cannot find symbol
[ERROR] symbol: method equals(byte[],int,int,byte[],int,int)
[ERROR] return equals(value, offset, length, other, otherOffset, otherLength);
[ERROR]
[ERROR] /Users/dajobe/dev/redland/parquet/parquet-mr/parquet-column/src/main/java/parquet/io/api/Binary.java:[112,15] cannot find symbol
[ERROR] symbol: method equals(byte[],int,int,byte[],int,int)
[ERROR] return equals(value, 0, value.length, other, otherOffset, otherLength);
[ERROR] -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
[ERROR]
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR] mvn <goals> -rf :parquet-column
$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment