appengine-maven-archetypes-java
appengine-maven-archetypes-java copied to clipboard
standard pom.xml malformed - Missing >
<version1.0.3</version> should be <version>1.0.3</version>
in appengine-standard-archetype/src/main/resources/archetype-resources/pom.xml
There should be a test somewhere that would have caught this.
#if(${useEndpoints2} == "true")
<dependency>
<groupId>com.google.endpoints</groupId>
<artifactId>endpoints-framework</artifactId>
<version>2.0.7</version>
</dependency>
<dependency>
<groupId>com.google.endpoints</groupId>
<artifactId>endpoints-management-control-appengine</artifactId>
<version>1.0.3</version>
</dependency>
<dependency>
<groupId>com.google.endpoints</groupId>
<artifactId>endpoints-framework-auth</artifactId>
<version1.0.3</version>
</dependency>
#end
Good catch - I'm going to leave the issue open to remind me to generate some tests for this.