Change ordering of dependencies in swordv2 POM so that the org.dspace.dspace-swordv2 'war' dependency is listed *first*. This was necessary to ensure that the web.xml in that 'org.dspace.dspace-swordv2' WAR is inherited properly. (Previously it was somehow inheriting the web.xml from the 'org.swordapp.server' WAR)

git-svn-id: http://scm.dspace.org/svn/repo/dspace/trunk@6828 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
Tim Donohue
2011-10-25 20:11:38 +00:00
parent 355270f805
commit 741393d59d

View File

@@ -114,18 +114,19 @@
<dependencies> <dependencies>
<!-- DSpace Implementation of SWORDv2 Provider --> <!-- DSpace Custom SWORDv2 Web application -->
<dependency>
<groupId>org.dspace</groupId>
<artifactId>dspace-swordv2</artifactId>
<type>jar</type>
<classifier>classes</classifier>
</dependency>
<dependency> <dependency>
<groupId>org.dspace</groupId> <groupId>org.dspace</groupId>
<artifactId>dspace-swordv2</artifactId> <artifactId>dspace-swordv2</artifactId>
<type>war</type> <type>war</type>
</dependency>
<!-- DSpace Implementation of SWORDv2 Provider -->
<dependency>
<groupId>org.dspace</groupId>
<artifactId>dspace-swordv2</artifactId>
<type>jar</type>
<classifier>classes</classifier>
</dependency> </dependency>
<dependency> <dependency>