How to set version when deploying gae java?

前端 未结 4 945
悲&欢浪女
悲&欢浪女 2021-01-22 06:43

Since Intellij Idea IDE gae deployment plugin does not work, I have to use mvn appengine:update. It always deploy to version 1, ignoring version in appengine-web.xm

4条回答
  •  渐次进展
    2021-01-22 07:02

    Add the following into the plugins section in the project pom.xml file:

    
        com.google.cloud.tools
        appengine-maven-plugin
        2.2.0
        
            java
            1
        
    
    

提交回复
热议问题