Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile (default-compile)

前端 未结 23 2352
小蘑菇
小蘑菇 2020-11-29 15:55

I am using Maven 3.0.5 and Spring Tool Source 3.2 with Maven plugin installed. When I try to do \'Run As---> Maven install\', I am getting

23条回答
  •  一整个雨季
    2020-11-29 16:30

    i had the same problem and besides the above posts' configurations putting

                
                com.google.appengine
                appengine-maven-plugin
                1.9.32
                
                    false
                
                
                    
                        
                            endpoints_get_discovery_doc
                        
                    
                
            
    

    in the plugins element in pom.xml. i think the problem was absence of execution -> goal "endpoints_get_discovery_doc" in some cases like mine, so this worked for me.

提交回复
热议问题