Import gwt-dev dependency as last in gerrit-gwtdebug

gwt-dev.jar contains additional classes (eg. args4j version 2.0.12) that
can overwrite our dependency, therefore it should be imported as last
one in gerrit-gwtdebug pom.xml

Change-Id: Ic9797bf07c2f5f787bfcdb71104ea4156e523a1f
Signed-off-by: Dariusz Luksza <dariusz@luksza.org>
This commit is contained in:
Dariusz Luksza 2012-11-19 14:35:34 +01:00
parent 5367b8bab5
commit 444cf15474

View File

@ -33,11 +33,6 @@ limitations under the License.
</description>
<dependencies>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-dev</artifactId>
</dependency>
<dependency>
<groupId>com.google.gerrit</groupId>
<artifactId>gerrit-gwtui</artifactId>
@ -94,5 +89,12 @@ limitations under the License.
<classifier>sources</classifier>
<scope>provided</scope>
</dependency>
<!-- Workaround for overwriting our dependencies (like args4j) by additional
classes put in gwt-dev.jar -->
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-dev</artifactId>
</dependency>
</dependencies>
</project>