Author: [email protected]
Date: Wed Jul 13 15:39:23 2011
New Revision: 1213

Log:
[AMDATUAUTH-66] Moved consumer registry store to oauth-stores, created new 
initial oauth-consumerregistry bundle

Added:
   trunk/amdatu-auth/oauth-consumerregistry/
   trunk/amdatu-auth/oauth-consumerregistry/pom.xml
   trunk/amdatu-auth/oauth-consumerregistry/src/
   trunk/amdatu-auth/oauth-consumerregistry/src/main/
   trunk/amdatu-auth/oauth-consumerregistry/src/main/java/
   trunk/amdatu-auth/oauth-stores/consumer-store-fs/
      - copied from r1211, /trunk/amdatu-auth/oauth-consumerregistry-fs/
Removed:
   trunk/amdatu-auth/oauth-consumerregistry-fs/
Modified:
   trunk/amdatu-auth/oauth-stores/consumer-store-fs/pom.xml
   trunk/amdatu-auth/oauth-stores/pom.xml
   trunk/amdatu-auth/pom.xml

Added: trunk/amdatu-auth/oauth-consumerregistry/pom.xml
==============================================================================
--- (empty file)
+++ trunk/amdatu-auth/oauth-consumerregistry/pom.xml    Wed Jul 13 15:39:23 2011
@@ -0,0 +1,58 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright (c) 2010, 2011 The Amdatu Foundation
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.verning permissions and limitations
+  under the License.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.amdatu.auth</groupId>
+    <artifactId>org.amdatu.auth</artifactId>
+    <version>0.2.0-SNAPSHOT</version>
+  </parent>
+  <artifactId>org.amdatu.auth.oauth.consumerregistry</artifactId>
+  <packaging>bundle</packaging>
+  <name>Amdatu Auth - OAuth service consumer registry store</name>
+  <description>This bundle implements a persistent storage for oAuth service 
consumers</description>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.amdatu.auth</groupId>
+      <artifactId>org.amdatu.auth.oauth.api</artifactId>
+      <type>bundle</type>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <configuration>
+          <instructions>
+            
<Bundle-Activator>org.amdatu.authentication.oauth.consumerregistry.osgi.Activator</Bundle-Activator>
+            
<Bundle-SymbolicName>org.amdatu.auth.oauth.consumerregistry</Bundle-SymbolicName>
+            <Embed-Dependency>*;scope=compile</Embed-Dependency>
+            <Import-Package>
+              org.amdatu.authentication.oauth.api;version="[1.0,1.1)",
+              *
+            </Import-Package>
+            <Export-Package></Export-Package>
+          </instructions>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Modified: trunk/amdatu-auth/oauth-stores/consumer-store-fs/pom.xml
==============================================================================
--- /trunk/amdatu-auth/oauth-consumerregistry-fs/pom.xml        (original)
+++ trunk/amdatu-auth/oauth-stores/consumer-store-fs/pom.xml    Wed Jul 13 
15:39:23 2011
@@ -22,7 +22,7 @@
     <artifactId>org.amdatu.auth</artifactId>
     <version>0.2.0-SNAPSHOT</version>
   </parent>
-  <artifactId>org.amdatu.auth.oauth.consumerregistry-fs</artifactId>
+  <artifactId>org.amdatu.auth.oauth.store.consumer.fs</artifactId>
   <packaging>bundle</packaging>
   <name>Amdatu Auth - oAuth File-based consumer registry store</name>
   <description>This bundle implements a persistent storage for oAuth service 
consumers</description>

Modified: trunk/amdatu-auth/oauth-stores/pom.xml
==============================================================================
--- trunk/amdatu-auth/oauth-stores/pom.xml      (original)
+++ trunk/amdatu-auth/oauth-stores/pom.xml      Wed Jul 13 15:39:23 2011
@@ -28,6 +28,7 @@
   <description>This module holds OAuth storage implementations</description>
 
   <modules>
+    <module>consumer-store-fs</module>
     <module>nonce-store-mem</module>
   </modules>
 </project>

Modified: trunk/amdatu-auth/pom.xml
==============================================================================
--- trunk/amdatu-auth/pom.xml   (original)
+++ trunk/amdatu-auth/pom.xml   Wed Jul 13 15:39:23 2011
@@ -254,8 +254,9 @@
     <module>oauth-api</module>
     <module>oauth-client</module>
     <module>oauth-server</module>
-    <module>oauth-consumerregistry-fs</module>
+    <module>oauth-stores</module>
     <module>release</module>
+    <module>test-integration</module>
     <module>test-performance</module>
     <module>tokenprovider</module>
     <module>tokenstore-mem</module>
_______________________________________________
Amdatu-commits mailing list
[email protected]
http://lists.amdatu.org/mailman/listinfo/amdatu-commits

Reply via email to