Browse Source

repackage spring-registry-commons to o.a.a namespace

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1325321 13f79535-47bb-0310-9956-ffa450edef68
tags/archiva-1.4-M3
Olivier Lamy 12 years ago
parent
commit
5ba11055fe
24 changed files with 42 additions and 42 deletions
  1. 1
    1
      archiva-modules/archiva-base/archiva-configuration/src/main/java/org/apache/archiva/configuration/DefaultArchivaConfiguration.java
  2. 1
    1
      archiva-modules/archiva-base/archiva-configuration/src/main/java/org/apache/archiva/configuration/FileTypes.java
  3. 16
    16
      archiva-modules/archiva-base/archiva-configuration/src/test/resources/spring-context.xml
  4. 1
    1
      archiva-modules/archiva-base/archiva-consumers/archiva-core-consumers/src/test/resources/META-INF/spring-context.xml
  5. 2
    2
      archiva-modules/archiva-base/archiva-consumers/archiva-core-consumers/src/test/resources/spring-context-cleanup-released-snapshots.xml
  6. 3
    3
      archiva-modules/archiva-base/archiva-consumers/archiva-core-consumers/src/test/resources/spring-context-purge-consumer-test.xml
  7. 1
    1
      archiva-modules/archiva-base/archiva-consumers/archiva-core-consumers/src/test/resources/spring-context.xml
  8. 1
    1
      archiva-modules/archiva-base/archiva-consumers/archiva-lucene-consumers/src/test/resources/spring-context.xml
  9. 1
    1
      archiva-modules/archiva-base/archiva-repository-admin/archiva-repository-admin-default/src/test/resources/spring-context.xml
  10. 1
    1
      archiva-modules/archiva-base/archiva-repository-layer/src/test/resources/spring-context-repo-request-test.xml
  11. 1
    1
      archiva-modules/archiva-base/archiva-repository-scanner/src/test/resources/spring-context.xml
  12. 1
    1
      archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/resources/spring-context.xml
  13. 1
    1
      archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/spring-context.xml
  14. 1
    1
      archiva-modules/archiva-web/archiva-rest/archiva-rest-services/src/test/resources/META-INF/spring-context-test.xml
  15. 1
    1
      archiva-modules/archiva-web/archiva-security/src/test/resources/spring-context.xml
  16. 1
    1
      archiva-modules/archiva-web/archiva-web-common/src/test/resources/spring-context-rss-servlet.xml
  17. 1
    1
      archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/WEB-INF/applicationContext.xml
  18. 1
    1
      archiva-modules/archiva-web/archiva-webapp-js/src/test/resources/META-INF/spring-context-test.xml
  19. 1
    1
      archiva-modules/archiva-web/archiva-webapp/src/main/webapp/WEB-INF/applicationContext.xml
  20. 1
    1
      archiva-modules/archiva-web/archiva-webapp/src/test/resources/spring-context-artifacts-download.xml
  21. 1
    1
      archiva-modules/archiva-web/archiva-webapp/src/test/resources/spring-context-merge-index-download.xml
  22. 1
    1
      archiva-modules/archiva-web/archiva-webdav/src/test/resources/repository-servlet-simple.xml
  23. 1
    1
      archiva-modules/archiva-web/archiva-webdav/src/test/resources/spring-context-servlet-security-test.xml
  24. 1
    1
      archiva-modules/archiva-web/archiva-webdav/src/test/resources/spring-context.xml

+ 1
- 1
archiva-modules/archiva-base/archiva-configuration/src/main/java/org/apache/archiva/configuration/DefaultArchivaConfiguration.java View File

@@ -32,6 +32,7 @@ import org.apache.archiva.policies.PreDownloadPolicy;
import org.apache.archiva.redback.components.registry.Registry;
import org.apache.archiva.redback.components.registry.RegistryException;
import org.apache.archiva.redback.components.registry.RegistryListener;
import org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry;
import org.apache.commons.collections.CollectionUtils;
import org.apache.commons.collections.ListUtils;
import org.apache.commons.collections.MapUtils;
@@ -42,7 +43,6 @@ import org.codehaus.plexus.evaluator.DefaultExpressionEvaluator;
import org.codehaus.plexus.evaluator.EvaluatorException;
import org.codehaus.plexus.evaluator.ExpressionEvaluator;
import org.codehaus.plexus.evaluator.sources.SystemPropertyExpressionSource;
import org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry;
import org.codehaus.redback.components.springutils.ComponentContainer;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

+ 1
- 1
archiva-modules/archiva-base/archiva-configuration/src/main/java/org/apache/archiva/configuration/FileTypes.java View File

@@ -29,7 +29,7 @@ import org.apache.commons.collections.Predicate;
import org.apache.commons.configuration.CombinedConfiguration;
import org.apache.tools.ant.types.selectors.SelectorUtils;
import org.apache.archiva.redback.components.registry.RegistryException;
import org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry;
import org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry;
import org.springframework.stereotype.Service;

import javax.annotation.PostConstruct;

+ 16
- 16
archiva-modules/archiva-base/archiva-configuration/src/test/resources/spring-context.xml View File

@@ -36,13 +36,13 @@
<bean name="archivaConfiguration#test-defaults" class="org.apache.archiva.configuration.DefaultArchivaConfiguration">
<property name="registry" ref="registry#empty"/>
</bean>
<bean name="registry#empty" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry"/>
<bean name="registry#empty" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry"/>

<bean name="archivaConfiguration#test-upgrade-09" class="org.apache.archiva.configuration.DefaultArchivaConfiguration">
<property name="registry" ref="registry#test-upgrade-09"/>
</bean>

<bean name="registry#test-upgrade-09" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="registry#test-upgrade-09" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[
@@ -59,7 +59,7 @@
<property name="registry" ref="registry#test-upgrade-1.3"/>
</bean>

<bean name="registry#test-upgrade-1.3" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="registry#test-upgrade-1.3" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[
@@ -76,7 +76,7 @@
<property name="registry" ref="registry#configured"/>
</bean>

<bean name="registry#configured" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="registry#configured" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[
@@ -95,7 +95,7 @@
<property name="registry" ref="registry#test-autodetect-v1"/>
</bean>

<bean name="registry#test-autodetect-v1" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="registry#test-autodetect-v1" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[
@@ -114,7 +114,7 @@
<property name="registry" ref="registry#test-archiva-v1"/>
</bean>

<bean name="registry#test-archiva-v1" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="registry#test-archiva-v1" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[
@@ -132,7 +132,7 @@
<property name="registry" ref="registry#test-save"/>
</bean>

<bean name="registry#test-save" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="registry#test-save" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[
@@ -149,7 +149,7 @@
<property name="registry" ref="registry#test-save-user-defaults"/>
</bean>

<bean name="registry#test-save-user-defaults" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="registry#test-save-user-defaults" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[
@@ -168,7 +168,7 @@
<property name="registry" ref="registry#test-save-user-fallback"/>
</bean>

<bean name="registry#test-save-user-fallback" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="registry#test-save-user-fallback" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[
@@ -187,7 +187,7 @@
<property name="registry" ref="registry#test-save-user"/>
</bean>

<bean name="registry#test-save-user" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="registry#test-save-user" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[
@@ -207,7 +207,7 @@
<property name="registry" ref="registry#test-configuration-both"/>
</bean>

<bean name="registry#test-configuration-both" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="registry#test-configuration-both" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[
@@ -227,7 +227,7 @@
<property name="registry" ref="registry#test-read-saved"/>
</bean>

<bean name="registry#test-read-saved" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="registry#test-read-saved" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[
@@ -246,7 +246,7 @@
<property name="userConfigFilename" value="${basedir}/target/test/test-file.xml"/>
</bean>

<bean name="registry#test-cron-expressions" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="registry#test-cron-expressions" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[
@@ -264,7 +264,7 @@
<property name="registry" ref="registry#test-remove-central"/>
</bean>

<bean name="registry#test-remove-central" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="registry#test-remove-central" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[
@@ -284,7 +284,7 @@
<property name="altConfigFilename" value="${basedir}/target/*intentionally:invalid*/conf/archiva.xml"/>
</bean>

<bean name="registry#test-not-allowed-to-write-to-both" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="registry#test-not-allowed-to-write-to-both" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[
@@ -305,7 +305,7 @@
<property name="altConfigFilename" value="${basedir}/target/test-appserver-base/conf/archiva.xml"/>
</bean>

<bean name="registry#test-not-allowed-to-write-to-user" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="registry#test-not-allowed-to-write-to-user" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[

+ 1
- 1
archiva-modules/archiva-base/archiva-consumers/archiva-core-consumers/src/test/resources/META-INF/spring-context.xml View File

@@ -38,7 +38,7 @@
</property>
</bean>

<bean name="commons-configuration" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="commons-configuration" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[

+ 2
- 2
archiva-modules/archiva-base/archiva-consumers/archiva-core-consumers/src/test/resources/spring-context-cleanup-released-snapshots.xml View File

@@ -33,7 +33,7 @@
<alias name="archivaConfiguration#cleanup-released-snapshots" alias="archivaConfiguration"/>
<alias name="archivaConfiguration#cleanup-released-snapshots" alias="archivaConfiguration#default"/>

<bean name="registry#cleanup-released-snapshots" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="registry#cleanup-released-snapshots" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[
@@ -50,7 +50,7 @@
<property name="archivaConfiguration" ref="archivaConfiguration#cleanup-released-snapshots"/>
</bean>

<bean name="commons-configuration" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="commons-configuration" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[

+ 3
- 3
archiva-modules/archiva-base/archiva-consumers/archiva-core-consumers/src/test/resources/spring-context-purge-consumer-test.xml View File

@@ -49,7 +49,7 @@
<property name="archivaConfiguration" ref="archivaConfiguration#retention-count"/>
</bean>

<bean name="registry#retention-count" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="registry#retention-count" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[
@@ -83,7 +83,7 @@
<property name="archivaConfiguration" ref="archivaConfiguration#days-old"/>
</bean>

<bean name="registry#days-old" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="registry#days-old" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[
@@ -100,7 +100,7 @@
<property name="archivaConfiguration" ref="archivaConfiguration#days-old"/>
</bean>

<bean name="commons-configuration" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="commons-configuration" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[

+ 1
- 1
archiva-modules/archiva-base/archiva-consumers/archiva-core-consumers/src/test/resources/spring-context.xml View File

@@ -29,7 +29,7 @@
<context:annotation-config/>
<context:component-scan base-package="org.apache.archiva.metadata.repository"/>

<bean name="commons-configuration" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="commons-configuration" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[

+ 1
- 1
archiva-modules/archiva-base/archiva-consumers/archiva-lucene-consumers/src/test/resources/spring-context.xml View File

@@ -30,7 +30,7 @@
<context:annotation-config/>
<context:component-scan base-package="org.apache.archiva.consumers.lucene.test"/>

<bean name="commons-configuration" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="commons-configuration" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[

+ 1
- 1
archiva-modules/archiva-base/archiva-repository-admin/archiva-repository-admin-default/src/test/resources/spring-context.xml View File

@@ -41,7 +41,7 @@
</property>
</bean>

<bean name="commons-configuration" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="commons-configuration" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[

+ 1
- 1
archiva-modules/archiva-base/archiva-repository-layer/src/test/resources/spring-context-repo-request-test.xml View File

@@ -34,7 +34,7 @@
<alias name="archivaConfiguration#repo-request-test" alias="archivaConfiguration#default"/>
<alias name="archivaConfiguration#repo-request-test" alias="archivaConfiguration"/>

<bean name="registry#configured" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="registry#configured" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[

+ 1
- 1
archiva-modules/archiva-base/archiva-repository-scanner/src/test/resources/spring-context.xml View File

@@ -35,7 +35,7 @@
<constructor-arg ref="archivaConfiguration#test-conf"/>
</bean>

<bean name="registry#configured" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="registry#configured" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[

+ 1
- 1
archiva-modules/archiva-scheduler/archiva-scheduler-indexing/src/test/resources/spring-context.xml View File

@@ -43,7 +43,7 @@

<alias name="archivaConfiguration#default" alias="archivaConfiguration"/>

<bean name="registry#default" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="registry#default" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[

+ 1
- 1
archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/test/resources/spring-context.xml View File

@@ -56,7 +56,7 @@
<property name="registry" ref="registry#test-configured"/>
</bean>

<bean name="registry#test-configured" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="registry#test-configured" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[

+ 1
- 1
archiva-modules/archiva-web/archiva-rest/archiva-rest-services/src/test/resources/META-INF/spring-context-test.xml View File

@@ -52,7 +52,7 @@

<alias name="archivaConfiguration#default" alias="archivaConfiguration"/>

<bean name="registry#default" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="registry#default" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[

+ 1
- 1
archiva-modules/archiva-web/archiva-security/src/test/resources/spring-context.xml View File

@@ -86,7 +86,7 @@

<alias name="commons-configuration" alias="registry#test"/>

<bean name="commons-configuration" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="commons-configuration" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[

+ 1
- 1
archiva-modules/archiva-web/archiva-web-common/src/test/resources/spring-context-rss-servlet.xml View File

@@ -49,7 +49,7 @@

<alias name="archivaConfiguration#default" alias="archivaConfiguration"/>

<bean name="registry#default" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="registry#default" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[

+ 1
- 1
archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/WEB-INF/applicationContext.xml View File

@@ -54,7 +54,7 @@
<property name="session" ref="mailSession"/>
</bean>

<bean name="commons-configuration" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="commons-configuration" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[

+ 1
- 1
archiva-modules/archiva-web/archiva-webapp-js/src/test/resources/META-INF/spring-context-test.xml View File

@@ -52,7 +52,7 @@

<alias name="archivaConfiguration#default" alias="archivaConfiguration"/>

<bean name="registry#default" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="registry#default" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[

+ 1
- 1
archiva-modules/archiva-web/archiva-webapp/src/main/webapp/WEB-INF/applicationContext.xml View File

@@ -74,7 +74,7 @@
</bean>

<!-- START SNIPPET: configuration-files-list -->
<bean name="commons-configuration" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="commons-configuration" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[

+ 1
- 1
archiva-modules/archiva-web/archiva-webapp/src/test/resources/spring-context-artifacts-download.xml View File

@@ -31,7 +31,7 @@
<context:property-placeholder system-properties-mode="OVERRIDE"/>


<bean name="commons-configuration" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="commons-configuration" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[

+ 1
- 1
archiva-modules/archiva-web/archiva-webapp/src/test/resources/spring-context-merge-index-download.xml View File

@@ -31,7 +31,7 @@
<context:property-placeholder system-properties-mode="OVERRIDE"/>


<bean name="commons-configuration" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="commons-configuration" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[

+ 1
- 1
archiva-modules/archiva-web/archiva-webdav/src/test/resources/repository-servlet-simple.xml View File

@@ -37,7 +37,7 @@

<alias name="archivaConfiguration#default" alias="archivaConfiguration"/>

<bean name="registry#default" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="registry#default" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[

+ 1
- 1
archiva-modules/archiva-web/archiva-webdav/src/test/resources/spring-context-servlet-security-test.xml View File

@@ -53,7 +53,7 @@

<alias name="archivaConfiguration#default" alias="archivaConfiguration"/>

<bean name="registry#default" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="registry#default" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[

+ 1
- 1
archiva-modules/archiva-web/archiva-webdav/src/test/resources/spring-context.xml View File

@@ -52,7 +52,7 @@

<alias name="archivaConfiguration#default" alias="archivaConfiguration"/>

<bean name="registry#default" class="org.codehaus.redback.components.registry.commons.CommonsConfigurationRegistry">
<bean name="registry#default" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
<property name="properties">
<value>
<![CDATA[

Loading…
Cancel
Save