apigee / apigee-deploy-maven-plugin

Apache License 2.0
80 stars 167 forks source link

Fix scope on maven plugin api and remove duplicate #214

Closed hazendaz closed 1 year ago

hazendaz commented 1 year ago

currently in the pom this is listed 2 times. Please remove the duplicate 2.0 one and mark the other 'provided' as required per maven.

        <dependency>
            <groupId>org.apache.maven</groupId>
            <artifactId>maven-plugin-api</artifactId>
            <version>2.0</version>
        </dependency>
        <dependency>
            <groupId>org.apache.maven</groupId>
            <artifactId>maven-plugin-api</artifactId>
            <version>${maven.version}</version>
        </dependency>
ssvaidyanathan commented 1 year ago

done