Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save AdamPaynter/3185180 to your computer and use it in GitHub Desktop.
Save AdamPaynter/3185180 to your computer and use it in GitHub Desktop.
Output generated by Maven when attempting to run Guava's unit tests
[INFO] Scanning for projects...
[INFO] Reactor build order:
[INFO] Guava Maven Parent
[INFO] Guava: Google Core Libraries for Java
[INFO] Guava GWT compatible libs
[INFO] Guava Testing Library
[INFO] Guava Unit Tests
[INFO] ------------------------------------------------------------------------
[INFO] Building Guava Maven Parent
[INFO] task-segment: [test]
[INFO] ------------------------------------------------------------------------
[INFO] [enforcer:enforce {execution: enforce-maven}]
[INFO] ------------------------------------------------------------------------
[INFO] Building Guava: Google Core Libraries for Java
[INFO] task-segment: [test]
[INFO] ------------------------------------------------------------------------
[INFO] [enforcer:enforce {execution: enforce-maven}]
[INFO] [resources:resources {execution: default-resources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/adam/guava-libraries/guava/src/main/resources
[INFO] [compiler:compile {execution: default-compile}]
[INFO] Compiling 392 source files to /home/adam/guava-libraries/guava/target/classes
[WARNING] /home/adam/guava-libraries/guava/src/com/google/common/primitives/UnsignedBytes.java:[25,15] sun.misc.Unsafe is internal proprietary API and may be removed in a future release
[WARNING] /home/adam/guava-libraries/guava/src/com/google/common/cache/Striped64.java:[300,33] sun.misc.Unsafe is internal proprietary API and may be removed in a future release
[WARNING] /home/adam/guava-libraries/guava/src/com/google/common/cache/Striped64.java:[323,27] sun.misc.Unsafe is internal proprietary API and may be removed in a future release
[WARNING] /home/adam/guava-libraries/guava/src/com/google/common/cache/Striped64.java:[103,37] sun.misc.Unsafe is internal proprietary API and may be removed in a future release
[WARNING] /home/adam/guava-libraries/guava/src/com/google/common/primitives/UnsignedBytes.java:[319,19] sun.misc.Unsafe is internal proprietary API and may be removed in a future release
[WARNING] /home/adam/guava-libraries/guava/src/com/google/common/primitives/UnsignedBytes.java:[325,21] sun.misc.Unsafe is internal proprietary API and may be removed in a future release
[WARNING] /home/adam/guava-libraries/guava/src/com/google/common/primitives/UnsignedBytes.java:[330,28] sun.misc.Unsafe is internal proprietary API and may be removed in a future release
[WARNING] /home/adam/guava-libraries/guava/src/com/google/common/cache/Striped64.java:[325,27] sun.misc.Unsafe is internal proprietary API and may be removed in a future release
[WARNING] /home/adam/guava-libraries/guava/src/com/google/common/cache/Striped64.java:[330,56] sun.misc.Unsafe is internal proprietary API and may be removed in a future release
[WARNING] /home/adam/guava-libraries/guava/src/com/google/common/cache/Striped64.java:[330,56] sun.misc.Unsafe is internal proprietary API and may be removed in a future release
[WARNING] /home/adam/guava-libraries/guava/src/com/google/common/cache/Striped64.java:[331,39] sun.misc.Unsafe is internal proprietary API and may be removed in a future release
[WARNING] /home/adam/guava-libraries/guava/src/com/google/common/cache/Striped64.java:[333,32] sun.misc.Unsafe is internal proprietary API and may be removed in a future release
[WARNING] /home/adam/guava-libraries/guava/src/com/google/common/cache/Striped64.java:[335,44] sun.misc.Unsafe is internal proprietary API and may be removed in a future release
[WARNING] POM for 'biz.aQute:bndlib:pom:1.50.0:runtime' is invalid.
Its dependencies (if any) will NOT be available to the current build.
[INFO] [bundle:manifest {execution: bundle-manifest}]
[INFO] [resources:testResources {execution: default-testResources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/adam/guava-libraries/guava/src/test/resources
[INFO] [compiler:testCompile {execution: default-testCompile}]
[INFO] No sources to compile
[INFO] [surefire:test {execution: default-test}]
[INFO] No tests to run.
[INFO] [animal-sniffer:check {execution: check-java16-sun}]
[INFO] Checking unresolved references to org.codehaus.mojo.signature:java16-sun:1.0
[INFO] ------------------------------------------------------------------------
[INFO] Building Guava GWT compatible libs
[INFO] task-segment: [test]
[INFO] ------------------------------------------------------------------------
Downloading: https://oss.sonatype.org/content/repositories/snapshots/com/google/guava/guava/13.0-SNAPSHOT/guava-13.0-SNAPSHOT-sources.jar
[INFO] Unable to find resource 'com.google.guava:guava:jar:sources:13.0-SNAPSHOT' in repository sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots)
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] Failed to resolve artifact.
Missing:
----------
1) com.google.guava:guava:jar:sources:13.0-SNAPSHOT
Try downloading the file manually from the project website.
Then, install it using the command:
mvn install:install-file -DgroupId=com.google.guava -DartifactId=guava -Dversion=13.0-SNAPSHOT -Dclassifier=sources -Dpackaging=jar -Dfile=/path/to/file
Alternatively, if you host your own repository you can deploy the file there:
mvn deploy:deploy-file -DgroupId=com.google.guava -DartifactId=guava -Dversion=13.0-SNAPSHOT -Dclassifier=sources -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]
Path to dependency:
1) com.google.guava:guava-gwt:jar:13.0-SNAPSHOT
2) com.google.guava:guava:jar:sources:13.0-SNAPSHOT
----------
1 required artifact is missing.
for artifact:
com.google.guava:guava-gwt:jar:13.0-SNAPSHOT
from the specified remote repositories:
central (http://repo1.maven.org/maven2),
sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots)
[INFO] ------------------------------------------------------------------------
[INFO] For more information, run Maven with the -e switch
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 38 seconds
[INFO] Finished at: Thu Jul 26 20:09:17 ADT 2012
[INFO] Final Memory: 38M/367M
[INFO] ------------------------------------------------------------------------
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment