Author: [email protected]
Date: Tue May  3 15:46:23 2011
New Revision: 1083

Log:
[AMDATUOPENSOCIAL-40] Moved opensocial example to opensocial project

Added:
   trunk/amdatu-opensocial/example-friends-gadget/
      - copied from r1081, /trunk/amdatu-example/friends-gadget/
   trunk/amdatu-opensocial/example-gadgetrepository/
      - copied from r1081, /trunk/amdatu-example/gadgetrepository/
Removed:
   trunk/amdatu-example/friends-gadget/
   trunk/amdatu-example/gadgetrepository/
Modified:
   trunk/amdatu-example/pom.xml
   trunk/amdatu-opensocial/example-friends-gadget/pom.xml
   trunk/amdatu-opensocial/example-gadgetrepository/pom.xml
   trunk/amdatu-opensocial/pom.xml

Modified: trunk/amdatu-example/pom.xml
==============================================================================
--- trunk/amdatu-example/pom.xml        (original)
+++ trunk/amdatu-example/pom.xml        Tue May  3 15:46:23 2011
@@ -129,8 +129,6 @@
   <modules>
     <module>course-gadget</module>
     <module>course-service</module>
-    <module>friends-gadget</module>
-    <module>gadgetrepository</module>
   </modules>
 
 </project>
\ No newline at end of file

Modified: trunk/amdatu-opensocial/example-friends-gadget/pom.xml
==============================================================================
--- /trunk/amdatu-example/friends-gadget/pom.xml        (original)
+++ trunk/amdatu-opensocial/example-friends-gadget/pom.xml      Tue May  3 
15:46:23 2011
@@ -3,52 +3,49 @@
   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.example</groupId>
-    <artifactId>org.amdatu.example</artifactId>
+    <groupId>org.amdatu.opensocial</groupId>
+    <artifactId>org.amdatu.opensocial</artifactId>
     <version>0.2.0-SNAPSHOT</version>
   </parent>
-  <artifactId>org.amdatu.example.friends.gadget</artifactId>
+  <artifactId>org.amdatu.opensocial.example.friends.gadget</artifactId>
   <packaging>bundle</packaging>
-  <name>Amdatu Example - Friends gadget</name>
+  <name>Amdatu OpenSocial - Friends gadget example</name>
   <description>Provides an example gadget to display all friends of the user 
currently logged in</description>
 
   <dependencies>
     <dependency>
       <groupId>org.amdatu.web</groupId>
-      <artifactId>dispatcher</artifactId>
-      <version>${project.version}</version>
-      <scope>provided</scope>
+      <artifactId>org.amdatu.web.dispatcher</artifactId>
       <type>bundle</type>
     </dependency>
     <dependency>
       <groupId>org.amdatu.web</groupId>
-      <artifactId>jsp</artifactId>
-      <version>${project.version}</version>
-      <scope>provided</scope>
+      <artifactId>org.amdatu.web.jsp</artifactId>
       <type>bundle</type>
     </dependency>
     <dependency>
       <groupId>org.amdatu.web</groupId>
-      <artifactId>resource</artifactId>
-      <version>${project.version}</version>
-      <scope>provided</scope>
+      <artifactId>org.amdatu.web.resource</artifactId>
+      <type>bundle</type>
+    </dependency>
+    <dependency>
+      <groupId>org.amdatu.web</groupId>
+      <artifactId>org.amdatu.web.httpcontext</artifactId>
       <type>bundle</type>
     </dependency>
     <dependency>
       <groupId>org.amdatu.opensocial</groupId>
       <artifactId>org.amdatu.opensocial.gadgetmanagement</artifactId>
-      <scope>provided</scope>
       <type>bundle</type>
     </dependency>
     <dependency>
       <groupId>org.amdatu.opensocial</groupId>
       <artifactId>org.amdatu.opensocial.shindig</artifactId>
-      <scope>provided</scope>
       <type>bundle</type>
     </dependency>
     <dependency>
-      <groupId>org.amdatu.example</groupId>
-      <artifactId>gadgetrepository</artifactId>
+      <groupId>org.amdatu.opensocial</groupId>
+      <artifactId>org.amdatu.opensocial.example.gadget.repository</artifactId>
       <version>${project.version}</version>
       <scope>provided</scope>
       <type>bundle</type>

Modified: trunk/amdatu-opensocial/example-gadgetrepository/pom.xml
==============================================================================
--- /trunk/amdatu-example/gadgetrepository/pom.xml      (original)
+++ trunk/amdatu-opensocial/example-gadgetrepository/pom.xml    Tue May  3 
15:46:23 2011
@@ -3,26 +3,24 @@
   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.example</groupId>
-    <artifactId>org.amdatu.example</artifactId>
+    <groupId>org.amdatu.opensocial</groupId>
+    <artifactId>org.amdatu.opensocial</artifactId>
     <version>0.2.0-SNAPSHOT</version>
   </parent>
-  <artifactId>org.amdatu.example.gadgetrepository</artifactId>
+  <artifactId>org.amdatu.opensocial.example.gadget.repository</artifactId>
   <packaging>bundle</packaging>
-  <name>Amdatu Example - Gadget repository</name>
+  <name>Amdatu OpenSocial - Gadget repository example</name>
   <description>Provides an example gadget repository</description>
 
   <dependencies>
     <dependency>
       <groupId>org.amdatu.opensocial</groupId>
       <artifactId>org.amdatu.opensocial.gadgetmanagement</artifactId>
-      <scope>provided</scope>
       <type>bundle</type>
     </dependency>
     <dependency>
       <groupId>org.amdatu.opensocial</groupId>
       <artifactId>org.amdatu.opensocial.shindig</artifactId>
-      <scope>provided</scope>
       <type>bundle</type>
     </dependency>
   </dependencies>

Modified: trunk/amdatu-opensocial/pom.xml
==============================================================================
--- trunk/amdatu-opensocial/pom.xml     (original)
+++ trunk/amdatu-opensocial/pom.xml     Tue May  3 15:46:23 2011
@@ -216,6 +216,8 @@
   </distributionManagement>
 
   <modules>
+    <module>example-friends-gadget</module>
+    <module>example-gadgetrepository</module>
     <module>opensocial-dashboard</module>
     <module>opensocial-gadgetmanagement</module>
     <module>opensocial-profile</module>
_______________________________________________
Amdatu-commits mailing list
[email protected]
http://lists.amdatu.org/mailman/listinfo/amdatu-commits

Reply via email to