Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ailabs-software/3b86a9719fc698497a4b9445ac3394d4 to your computer and use it in GitHub Desktop.
Save ailabs-software/3b86a9719fc698497a4b9445ac3394d4 to your computer and use it in GitHub Desktop.
Error due to fail at matching
[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Build Order:
[INFO]
[INFO] root-group
[INFO] sharedlibrary
[INFO] helloapp
[INFO] worldapp
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building root-group 1
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building sharedlibrary 1.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-resources-plugin:2.3:resources (default-resources) @ sharedlibrary ---
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] skip non existing resourceDirectory /home/madonna/GwtMaven3Project/sharedlibrary/src/main/resources
[INFO]
[INFO] --- maven-compiler-plugin:2.0.2:compile (default-compile) @ sharedlibrary ---
[INFO] Compiling 1 source file to /home/madonna/GwtMaven3Project/sharedlibrary/target/classes
[INFO]
[INFO] --- maven-resources-plugin:2.3:testResources (default-testResources) @ sharedlibrary ---
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] skip non existing resourceDirectory /home/madonna/GwtMaven3Project/sharedlibrary/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:2.0.2:testCompile (default-testCompile) @ sharedlibrary ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-surefire-plugin:2.10:test (default-test) @ sharedlibrary ---
[INFO] No tests to run.
[INFO] Surefire report directory: /home/madonna/GwtMaven3Project/sharedlibrary/target/surefire-reports
-------------------------------------------------------
T E S T S
-------------------------------------------------------
Results :
Tests run: 0, Failures: 0, Errors: 0, Skipped: 0
[INFO]
[INFO] --- gwt-maven-plugin:2.8.0:compile (default) @ sharedlibrary ---
[INFO] SharedLibrary has no EntryPoint - compilation skipped
[INFO]
[INFO] --- maven-jar-plugin:2.2:jar (default-jar) @ sharedlibrary ---
[INFO] Building jar: /home/madonna/GwtMaven3Project/sharedlibrary/target/sharedlibrary-1.0-SNAPSHOT.jar
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building helloapp 1.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-resources-plugin:2.3:resources (default-resources) @ helloapp ---
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] skip non existing resourceDirectory /home/madonna/GwtMaven3Project/helloapp/src/main/resources
[INFO]
[INFO] --- maven-compiler-plugin:2.0.2:compile (default-compile) @ helloapp ---
[INFO] Nothing to compile - all classes are up to date
[INFO]
[INFO] --- maven-resources-plugin:2.3:testResources (default-testResources) @ helloapp ---
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] skip non existing resourceDirectory /home/madonna/GwtMaven3Project/helloapp/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:2.0.2:testCompile (default-testCompile) @ helloapp ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-surefire-plugin:2.10:test (default-test) @ helloapp ---
[INFO] No tests to run.
[INFO] Surefire report directory: /home/madonna/GwtMaven3Project/helloapp/target/surefire-reports
-------------------------------------------------------
T E S T S
-------------------------------------------------------
Results :
Tests run: 0, Failures: 0, Errors: 0, Skipped: 0
[INFO]
[INFO] --- gwt-maven-plugin:2.8.0:compile (default) @ helloapp ---
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO]
[INFO] root-group ........................................ SUCCESS [0.003s]
[INFO] sharedlibrary ..................................... SUCCESS [4.738s]
[INFO] helloapp .......................................... FAILURE [0.421s]
[INFO] worldapp .......................................... SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 5.468s
[INFO] Finished at: Mon Jan 16 00:52:12 EST 2017
[INFO] Final Memory: 20M/183M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.codehaus.mojo:gwt-maven-plugin:2.8.0:compile (default) on project helloapp: GWT Module sharedlibrary not found in project sources or resources. -> [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/MojoExecutionException
[ERROR]
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR] mvn <goals> -rf :helloapp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment