aboutsummaryrefslogtreecommitdiffstats
path: root/archiva-cli/src
diff options
context:
space:
mode:
authorBrett Porter <brett@apache.org>2014-07-30 12:03:33 +1000
committerBrett Porter <brett@apache.org>2014-07-30 12:05:02 +1000
commit732531ebef675b45f964447cf44f310d67298f2d (patch)
tree96b086093de5e3a05ec6febc5fffbeb7d8d63602 /archiva-cli/src
parent0f2467eb86f26393b82ee7fd753cba6468c2c008 (diff)
downloadarchiva-732531ebef675b45f964447cf44f310d67298f2d.tar.gz
archiva-732531ebef675b45f964447cf44f310d67298f2d.zip
ensure archiva-cli is able to run
clean up the dependencies used and add some missing configuration form shade
Diffstat (limited to 'archiva-cli/src')
-rw-r--r--archiva-cli/src/main/resources/META-INF/spring-context.xml8
1 files changed, 6 insertions, 2 deletions
diff --git a/archiva-cli/src/main/resources/META-INF/spring-context.xml b/archiva-cli/src/main/resources/META-INF/spring-context.xml
index 028987855..b40e3851a 100644
--- a/archiva-cli/src/main/resources/META-INF/spring-context.xml
+++ b/archiva-cli/src/main/resources/META-INF/spring-context.xml
@@ -21,13 +21,17 @@
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
+ xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
- http://www.springframework.org/schema/context/spring-context-3.0.xsd"
+ http://www.springframework.org/schema/context/spring-context-3.0.xsd
+ http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd"
default-lazy-init="true">
+ <!-- Note: must include util namespace above to accommodate MSHADE-175 -->
+
<context:annotation-config/>
<context:component-scan base-package="org.apache.archiva.cli"/>
-</beans> \ No newline at end of file
+</beans>