Skip to content

It does not compile #2

@pabloa

Description

@pabloa

It does not compile:

mvn clean install

[INFO] 
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ gather ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO] Copying 0 resource
[INFO] 
[INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ gather ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 3 source files to /home/pablo/borrar/reactive-notes/gather/target/classes
[INFO] -------------------------------------------------------------
[ERROR] COMPILATION ERROR : 
[INFO] -------------------------------------------------------------
[ERROR] /home/pablo/borrar/reactive-notes/gather/src/main/java/com/example/NettyClientController.java:[29,29] package reactor.io.netty.http does not exist
[ERROR] /home/pablo/borrar/reactive-notes/gather/src/main/java/com/example/NettyClientController.java:[38,13] cannot find symbol
  symbol:   class HttpClient
  location: class com.example.NettyClientController
[ERROR] /home/pablo/borrar/reactive-notes/gather/src/main/java/com/example/NettyClientController.java:[38,33] cannot find symbol
  symbol:   variable HttpClient
  location: class com.example.NettyClientController
[INFO] 3 errors 
[INFO] -------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO] 
[INFO] gather ............................................. FAILURE [ 47.246 s]
[INFO] reactive ........................................... SKIPPED
[INFO] flux ............................................... SKIPPED
[INFO] Parent Demo ........................................ SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 55.798 s
[INFO] Finished at: 2016-08-26T14:54:30-07:00
[INFO] Final Memory: 35M/343M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project gather: Compilation failure: Compilation failure:
[ERROR] /home/pablo/borrar/reactive-notes/gather/src/main/java/com/example/NettyClientController.java:[29,29] package reactor.io.netty.http does not exist
[ERROR] /home/pablo/borrar/reactive-notes/gather/src/main/java/com/example/NettyClientController.java:[38,13] cannot find symbol
[ERROR] symbol:   class HttpClient
[ERROR] location: class com.example.NettyClientController
[ERROR] /home/pablo/borrar/reactive-notes/gather/src/main/java/com/example/NettyClientController.java:[38,33] cannot find symbol
[ERROR] symbol:   variable HttpClient
[ERROR] location: class com.example.NettyClientController
[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
pablo@newnan:~/borrar/reactive-notes$ mvn clean install
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=2g; support was removed in 8.0
[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Build Order:
[INFO] 
[INFO] gather
[INFO] reactive
[INFO] flux
[INFO] Parent Demo
[INFO]                                                                         
[INFO] ------------------------------------------------------------------------
[INFO] Building gather 0.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
Downloading: https://repo.spring.io/snapshot/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom
Downloading: https://repo.spring.io/milestone/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom (0 B at 0.0 KB/sec)
Downloading: https://repo.spring.io/snapshot/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom
Downloading: https://repo.spring.io/milestone/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom (0 B at 0.0 KB/sec)
Downloading: https://repo.spring.io/snapshot/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar
Downloading: https://repo.spring.io/milestone/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar (0 B at 0.0 KB/sec)
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ gather ---
[INFO] Deleting /home/pablo/borrar/reactive-notes/gather/target
[INFO] 
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ gather ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO] Copying 0 resource
[INFO] 
[INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ gather ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 3 source files to /home/pablo/borrar/reactive-notes/gather/target/classes
[INFO] -------------------------------------------------------------
[ERROR] COMPILATION ERROR : 
[INFO] -------------------------------------------------------------
[ERROR] /home/pablo/borrar/reactive-notes/gather/src/main/java/com/example/NettyClientController.java:[29,29] package reactor.io.netty.http does not exist
[ERROR] /home/pablo/borrar/reactive-notes/gather/src/main/java/com/example/NettyClientController.java:[38,13] cannot find symbol
  symbol:   class HttpClient
  location: class com.example.NettyClientController
[ERROR] /home/pablo/borrar/reactive-notes/gather/src/main/java/com/example/NettyClientController.java:[38,33] cannot find symbol
  symbol:   variable HttpClient
  location: class com.example.NettyClientController
[INFO] 3 errors 
[INFO] -------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO] 
[INFO] gather ............................................. FAILURE [  6.261 s]
[INFO] reactive ........................................... SKIPPED
[INFO] flux ............................................... SKIPPED
[INFO] Parent Demo ........................................ SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 7.028 s
[INFO] Finished at: 2016-08-26T14:57:19-07:00
[INFO] Final Memory: 35M/322M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project gather: Compilation failure: Compilation failure:
[ERROR] /home/pablo/borrar/reactive-notes/gather/src/main/java/com/example/NettyClientController.java:[29,29] package reactor.io.netty.http does not exist
[ERROR] /home/pablo/borrar/reactive-notes/gather/src/main/java/com/example/NettyClientController.java:[38,13] cannot find symbol
[ERROR] symbol:   class HttpClient
[ERROR] location: class com.example.NettyClientController
[ERROR] /home/pablo/borrar/reactive-notes/gather/src/main/java/com/example/NettyClientController.java:[38,33] cannot find symbol
[ERROR] symbol:   variable HttpClient
[ERROR] location: class com.example.NettyClientController
[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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions