ninjaframework / ninja-appengine

Google App Engine support for Ninja Framework
Apache License 2.0
40 stars 21 forks source link

Update to pom.xml #12

Closed shanestevens closed 9 years ago

shanestevens commented 9 years ago

In order to get rid of the Maven warning:

[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-deploy-plugin is missing. @ line 164, column 21

Can you please add:

<version>2.8.2</version>

To the pom.xml at line 167?

It should look like this:

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-deploy-plugin</artifactId>
                <version>2.8.2</version>
                <configuration>
                    <skip>true</skip>
                </configuration>
            </plugin>
raphaelbauer commented 9 years ago

You are totally right! Thanks for raising the issue!

raphaelbauer commented 9 years ago

fixed in develop

shanestevens commented 9 years ago

Thanks Raphael