getgauge / gauge-mvn-archetypes

Maven archetypes for Gauge

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

typo in gauge-java dependency version?

7ravis opened this issue · comments

gauge-archetype-java and gauge-archetype-selenium both have extra characters in the gauge-java dependency version, making it invalid:

        <dependency>
            <groupId>com.thoughtworks.gauge</groupId>
            <artifactId>gauge-java</artifactId>
            <version>[0.6.8,)</version>
            <scope>test</scope>
        </dependency>

Removing the extra characters (<version>0.6.8</version>) is all that is needed to fix.

The version tag uses a range syntax as mentioned in the 'maven pom.xml syntax reference'

Please, can you elaborate on where you see this being invalid?

I was just ignorant of that syntax. Thanks for your patience.