I created a new Cloud 9 project and am trying to start a Google App Engine (Java) project. I defined the project as a custom template. I enter the following command into the terminal to create my project.
marcmouallem@my-project :~/workspace (master) $ mvn appengine:devserver [INFO] Scanning for projects... [INFO] ------------------------------------------------------------------------ [ERROR] BUILD ERROR [INFO] ------------------------------------------------------------------------ [INFO] Error resolving version for 'com.google.appengine:appengine-maven-plugin': Plugin requires Maven version 3.0 [INFO] ------------------------------------------------------------------------ [INFO] For more information, run Maven with the -e switch [INFO] ------------------------------------------------------------------------ [INFO] Total time: 1 second [INFO] Finished at: Thu Jan 15 22:08:53 UTC 2015 [INFO] Final Memory: 10M/907M [INFO] ------------------------------------------------------------------------
This is mainly about the part that says ...
Plugin requires Maven version 3.0
Looking at the version, I get ...
marcmouallem@my-project :~/workspace (master) $ mvn --version Apache Maven 2.2.1 (rdebian-14) Java version: 1.7.0_65 Java home: /usr/lib/jvm/java-7-openjdk-amd64/jre Default locale: en, platform encoding: UTF-8 OS name: "linux" version: "3.14.13-c9" arch: "amd64" Family: "unix" marcmouallem@my-project :~/workspace (master) $
Is there a way to get Cloud 9 to use Maven 3?
source share