Gotlifebar / gwtquery-plugins

Automatically exported from code.google.com/p/gwtquery-plugins
0 stars 0 forks source link

Maven definition incorrect #11

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
In the GettingStarted page, note that dependencies cannot be declared into the 
<build> section. Replace <dependency> with <plugin>, and everything seems to be 
ok.  

<build>
    <plugin>
        <groupId>com.googlecode.gwtquery.plugins</groupId>
        <artifactId>droppable-plugin</artifactId>
        <version>1.0.3</version>
    </plugin>
</build>

Original issue reported on code.google.com by cvin...@qunb.com on 9 Mar 2011 at 10:28

GoogleCodeExporter commented 8 years ago
Dependencies should be define inside <project> tags :

<project>
    <dependencies>
        <dependency>
            <groupId>com.googlecode.gwtquery.plugins</groupId>
            <artifactId>droppable-plugin</artifactId>
            <version>1.0.2</version>
            <scope>provided</scope>
        </dependency>
    </dependencies>
   </project>

I modified the wiki page accordingly.

Thanks for the bug report and the wiki page to adapt your maven config

Original comment by julien.d...@gmail.com on 15 Mar 2011 at 1:08

GoogleCodeExporter commented 8 years ago

Original comment by julien.d...@gmail.com on 15 Mar 2011 at 1:10