brew install maven
maven compile えい
[ERROR] Source option 5 is no longer supported. Use 7 or later.
エラーがでるので
<properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties>
OK
動かす
mvn exec:java
mvn exec:java -Dexec.mainClass=GuiceMain
だめ、classnot found
mvn exec:java -Dexec.mainClass=google.guice.GuiceMain
おめでとう。
mavanと実行までできた。
参考リンク:https://qiita.com/opengl-8080/items/6fb69cd2493e149cac3a#google-guice
以上です