Ниже приведен пример кода Hello World, основанного на gcloud и maven
<!-- [START pom] -->
.
.
.
<!-- [START properties] -->
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<!-- REQUIRED by appengine-maven-plugin plugin, if web.xml does not exist for your application -->
<failOnMissingWebXml>false</failOnMissingWebXml>
<!-- [END_EXCLUDE] -->
.
.
.
<build>
<!-- for hot reload of the web application-->
<outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/classes</outputDirectory>
<plugins>
<!-- [START cloudplugin] -->
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>appengine-maven-plugin</artifactId>
<version>1.3.2</version>
</plugin>
<!-- [END cloudplugin] -->
</plugins>
</build>
</project>
<!-- [END pom] -->
И после запуска команды mvn appengine: run я получаю следующую ошибку:
"Плагин не найдендля префикса 'appengine' в текущем проекте и в группах плагинов [org.apache.maven.plugins, org.codehaus.mojo], доступных в репозиториях [local (/Users/luay/.m2/repository), central (https://repo.maven.apache.org/maven2)]"