aboutsummaryrefslogtreecommitdiffstats
path: root/redback-authentication
diff options
context:
space:
mode:
authorOlivier Lamy <olamy@apache.org>2012-04-07 20:36:44 +0000
committerOlivier Lamy <olamy@apache.org>2012-04-07 20:36:44 +0000
commitd4a68cb2610f3b39114f3e6f821b87dcb84cab4a (patch)
treed10dca6c22efc5e90bd5eb5453eb563a4ce8f746 /redback-authentication
parent6d26b962c080d3a5ff3d68f9520790e5b87c5f8c (diff)
downloadarchiva-d4a68cb2610f3b39114f3e6f821b87dcb84cab4a.tar.gz
archiva-d4a68cb2610f3b39114f3e6f821b87dcb84cab4a.zip
package move to o.a.a.r module redback-authentication-memory
git-svn-id: https://svn.apache.org/repos/asf/archiva/redback/redback-core/trunk@1310857 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'redback-authentication')
-rw-r--r--redback-authentication/redback-authentication-providers/redback-authentication-memory/src/main/java/org/apache/archiva/redback/authentication/memory/MemoryAuthenticator.java (renamed from redback-authentication/redback-authentication-providers/redback-authentication-memory/src/main/java/org/codehaus/plexus/redback/authentication/memory/MemoryAuthenticator.java)2
-rw-r--r--redback-authentication/redback-authentication-providers/redback-authentication-memory/src/main/resources/META-INF/spring-context.xml2
-rw-r--r--redback-authentication/redback-authentication-providers/redback-authentication-memory/src/test/java/org/apache/archiva/redback/authentication/memory/MemoryAuthenticatorTest.java (renamed from redback-authentication/redback-authentication-providers/redback-authentication-memory/src/test/java/org/codehaus/plexus/redback/authentication/memory/MemoryAuthenticatorTest.java)2
-rw-r--r--redback-authentication/redback-authentication-providers/redback-authentication-memory/src/test/resources/spring-context.xml2
4 files changed, 4 insertions, 4 deletions
diff --git a/redback-authentication/redback-authentication-providers/redback-authentication-memory/src/main/java/org/codehaus/plexus/redback/authentication/memory/MemoryAuthenticator.java b/redback-authentication/redback-authentication-providers/redback-authentication-memory/src/main/java/org/apache/archiva/redback/authentication/memory/MemoryAuthenticator.java
index 1a6853a0b..82558e4a2 100644
--- a/redback-authentication/redback-authentication-providers/redback-authentication-memory/src/main/java/org/codehaus/plexus/redback/authentication/memory/MemoryAuthenticator.java
+++ b/redback-authentication/redback-authentication-providers/redback-authentication-memory/src/main/java/org/apache/archiva/redback/authentication/memory/MemoryAuthenticator.java
@@ -1,4 +1,4 @@
-package org.codehaus.plexus.redback.authentication.memory;
+package org.apache.archiva.redback.authentication.memory;
/*
* Licensed to the Apache Software Foundation (ASF) under one
diff --git a/redback-authentication/redback-authentication-providers/redback-authentication-memory/src/main/resources/META-INF/spring-context.xml b/redback-authentication/redback-authentication-providers/redback-authentication-memory/src/main/resources/META-INF/spring-context.xml
index c002c44f0..edf6bba64 100644
--- a/redback-authentication/redback-authentication-providers/redback-authentication-memory/src/main/resources/META-INF/spring-context.xml
+++ b/redback-authentication/redback-authentication-providers/redback-authentication-memory/src/main/resources/META-INF/spring-context.xml
@@ -29,6 +29,6 @@
<context:annotation-config />
<context:component-scan
- base-package="org.codehaus.plexus.redback.authentication.memory"/>
+ base-package="org.apache.archiva.redback.authentication.memory"/>
</beans> \ No newline at end of file
diff --git a/redback-authentication/redback-authentication-providers/redback-authentication-memory/src/test/java/org/codehaus/plexus/redback/authentication/memory/MemoryAuthenticatorTest.java b/redback-authentication/redback-authentication-providers/redback-authentication-memory/src/test/java/org/apache/archiva/redback/authentication/memory/MemoryAuthenticatorTest.java
index 311aa644d..141305da9 100644
--- a/redback-authentication/redback-authentication-providers/redback-authentication-memory/src/test/java/org/codehaus/plexus/redback/authentication/memory/MemoryAuthenticatorTest.java
+++ b/redback-authentication/redback-authentication-providers/redback-authentication-memory/src/test/java/org/apache/archiva/redback/authentication/memory/MemoryAuthenticatorTest.java
@@ -1,4 +1,4 @@
-package org.codehaus.plexus.redback.authentication.memory;
+package org.apache.archiva.redback.authentication.memory;
/*
* Licensed to the Apache Software Foundation (ASF) under one
diff --git a/redback-authentication/redback-authentication-providers/redback-authentication-memory/src/test/resources/spring-context.xml b/redback-authentication/redback-authentication-providers/redback-authentication-memory/src/test/resources/spring-context.xml
index 937229579..b2d754794 100644
--- a/redback-authentication/redback-authentication-providers/redback-authentication-memory/src/test/resources/spring-context.xml
+++ b/redback-authentication/redback-authentication-providers/redback-authentication-memory/src/test/resources/spring-context.xml
@@ -26,7 +26,7 @@
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd">
- <bean name="memory" class="org.codehaus.plexus.redback.authentication.memory.MemoryAuthenticator">
+ <bean name="memory" class="org.apache.archiva.redback.authentication.memory.MemoryAuthenticator">
<property name="login" value="jason"/>
<property name="password" value="kungfu"/>
</bean>