Author Topic: XMLKafkaGenerator and http-json-kafka howto  (Read 3298 times)

golfreeze

  • Administrator
  • Hero Member
  • *****
  • Posts: 2140
    • View Profile
    • นั่งสมาธิ สติปัฏฐานสี่ พาเที่ยววัด แนะนำวัด แจกcd ธรรมะฟรี
    • Email
XMLKafkaGenerator and http-json-kafka howto
« on: มิถุนายน 01, 2018, 11:09:17 PM »
git clone https://github.com/bvdeenen/http-json-kafka.git
##build
mvn package

###Begin with http-json-kafka
[INFO] Scanning for projects...
[INFO]                                                                         
[INFO] ------------------------------------------------------------------------
[INFO] Building http-json-kafka 1.0
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ http-json-kafka ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/golf/http-json-kafka/src/main/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ http-json-kafka ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 3 source files to /home/golf/http-json-kafka/target/classes
[INFO] -------------------------------------------------------------
[ERROR] COMPILATION ERROR :
[INFO] -------------------------------------------------------------
[ERROR] No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?
[INFO] 1 error
[INFO] -------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 1.431 s
[INFO] Finished at: 2018-06-01T18:41:21+07:00
[INFO] Final Memory: 16M/164M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project http-json-kafka: Compilation failure
[ERROR] No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?
[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

##fixed by re-install again
apt-get install openjdk-8-jdk

##for Warning: JAVA_HOME environment variable is not set fixed by
##Check path of java
readlink -f $(which java)
##Then export with end of /jre
export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64/jre

golfreeze

  • Administrator
  • Hero Member
  • *****
  • Posts: 2140
    • View Profile
    • นั่งสมาธิ สติปัฏฐานสี่ พาเที่ยววัด แนะนำวัด แจกcd ธรรมะฟรี
    • Email
Re: XMLKafkaGenerator and http-json-kafka howto
« Reply #1 on: มิถุนายน 01, 2018, 11:10:30 PM »