appengine-maven-archetypes-java icon indicating copy to clipboard operation
appengine-maven-archetypes-java copied to clipboard

standard pom.xml malformed - Missing >

Open elharo opened this issue 8 years ago • 1 comments

<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

elharo avatar Jun 09 '17 13:06 elharo

Good catch - I'm going to leave the issue open to remind me to generate some tests for this.

lesv avatar Jun 19 '17 21:06 lesv