Развертывание приложения в облачном приложении Google - PullRequest
0 голосов
/ 22 декабря 2018

У меня есть приложение maven для развертывания в облаке Google, файл pom, как показано ниже, на моем локальном компьютере с Windows

<dependencies>
    <dependency>
        <groupId>javax.servlet</groupId>
        <artifactId>servlet-api</artifactId>
        <version>2.5</version>
        <scope>provided</scope>
    </dependency>
    <dependency>
        <groupId>com.google.cloud.teleport</groupId>
        <artifactId>google-cloud-teleport-java</artifactId>
        <version>0.1-SNAPSHOT</version>
    </dependency>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>3.8.1</version>
        <scope>test</scope>
    </dependency>
</dependencies>
<build>
    <plugins>
        <plugin>
            <groupId>com.google.appengine</groupId>
            <artifactId>gcloud-maven-plugin</artifactId>
            <version>2.0.9.121.v20160815</version>
        </plugin>
    </plugins>
</build>

Когда я запускаю mvn в проекте

mvn deploy:gcloud 

Я получу сообщение об ошибке ниже:

Failed to execute goal com.google.appengine:gcloud-maven-`plugin:2.0.9.121.v20160815:deploy (default-cli) on project appengine-cron: Could not start the dev app server: Cannot run program "python.exe" (in directory "C:\Users\Mahdi\git\AppEngineCron\target\appengine-staging"): CreateProcess error=2, The system cannot find the file specified`

У меня установлен Pyhton 3.7 на моем компьютере с Windows, и он находится в каталоге пути

...