Trying to create alexa skill set (amazon: echo). At the same time, trying to use this experience as a training stand for injecting addiction through dagger 2. However, building the package using maven-2 cmd:
mvn assembly:assembly -DdescriptorId=jar-with-dependencies package'.
to create a zip-jar with full dependencies creates the following exception trace:
[INFO] ------------------------------------------------------------------------ [INFO] Building Echo Device Client 1.0 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ echo-device-client --- [WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, ie build is platform dependent! [INFO] skip non existing resourceDirectory /Users/apil.tamang/Dropbox/Git/echo-device-client/src/main/resources [INFO] [INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ echo-device-client --- [INFO] Changes detected - recompiling the module! [WARNING] File encoding has not been set, using platform encoding UTF-8, ie build is platform dependent! [INFO] Compiling 46 source files to /Users/apil.tamang/Dropbox/Git/echo-device-client/target/classes An exception has occurred in the compiler (1.8.0_60). Please file a bug at the Java Bug Database (http:
The initial compilation runs fine, and all tests run and succeed. I feel like things are going south during the βlinkingβ of dependencies. Please see this file to see console output during build.
My question is whether it is worth trying to generate dependencies using a different method. I know little for this purpose. Is there a patch or something out there that can be used? Do you find it possible to even come up with a workaround? I would like to be able to continue to use the scope of dagger 2 to create this project.
java-8 maven-2 compiler-errors dagger-2
apil.tamang
source share