Author: bramk
Date: Mon Oct 11 12:09:09 2010
New Revision: 149
Log:
AMDATU-102 added dependency.type for all in reactor bundle artifacts to enable
in reactor build
Modified:
trunk/amdatu-release/pom.xml
trunk/application-bundles/dashboard-bundle/pom.xml
trunk/application-bundles/gadget-management/pom.xml
trunk/application-bundles/pom.xml
trunk/example-bundles/course-gadget/pom.xml
trunk/example-bundles/course-service/pom.xml
trunk/example-bundles/friends-gadget/pom.xml
trunk/example-bundles/pom.xml
trunk/gadget-bundles/login-gadget/pom.xml
trunk/gadget-bundles/pom.xml
trunk/gadget-bundles/sparqlendpoint-gadget/pom.xml
trunk/platform-bundles/authorization-service/pom.xml
trunk/platform-bundles/cassandra-application/pom.xml
trunk/platform-bundles/cassandra-listener/pom.xml
trunk/platform-bundles/cassandra-persistencemanager/pom.xml
trunk/platform-bundles/config-template-manager/pom.xml
trunk/platform-bundles/profile-service/pom.xml
trunk/platform-bundles/sesame-application/pom.xml
trunk/platform-bundles/shindig-application/pom.xml
trunk/platform-bundles/tenant-service/pom.xml
trunk/platform-bundles/useradmin-cassandra-store/pom.xml
trunk/platform-bundles/wink-application/pom.xml
trunk/pom.xml
Modified: trunk/amdatu-release/pom.xml
==============================================================================
--- trunk/amdatu-release/pom.xml (original)
+++ trunk/amdatu-release/pom.xml Mon Oct 11 12:09:09 2010
@@ -16,12 +16,14 @@
<artifactId>dashboard</artifactId>
<version>${platform.version}</version>
<scope>compile</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.application</groupId>
<artifactId>gadgetmanagement</artifactId>
<version>${platform.version}</version>
<scope>compile</scope>
+ <type>bundle</type>
</dependency>
<!-- Example bundles -->
@@ -30,18 +32,21 @@
<artifactId>course-gadget</artifactId>
<version>${platform.version}</version>
<scope>compile</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.example</groupId>
<artifactId>course-service</artifactId>
<version>${platform.version}</version>
<scope>compile</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.example</groupId>
<artifactId>friends-gadget</artifactId>
<version>${platform.version}</version>
<scope>compile</scope>
+ <type>bundle</type>
</dependency>
<!-- Gadget bundles -->
@@ -50,12 +55,14 @@
<artifactId>login</artifactId>
<version>${platform.version}</version>
<scope>compile</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.gadget</groupId>
<artifactId>sparqlendpoint</artifactId>
<version>${platform.version}</version>
<scope>compile</scope>
+ <type>bundle</type>
</dependency>
<!-- Platform bundles -->
@@ -64,78 +71,91 @@
<artifactId>authorization</artifactId>
<version>${platform.version}</version>
<scope>compile</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>cassandra-application</artifactId>
<version>${platform.version}</version>
<scope>runtime</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>cassandra-listener</artifactId>
<version>${platform.version}</version>
<scope>runtime</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>cassandra-persistencemanager</artifactId>
<version>${platform.version}</version>
<scope>runtime</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>config-template-manager</artifactId>
<version>${platform.version}</version>
<scope>runtime</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>httpcontext</artifactId>
<version>${platform.version}</version>
<scope>runtime</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>loghandler</artifactId>
<version>${platform.version}</version>
<scope>runtime</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>profile-service</artifactId>
<version>${platform.version}</version>
<scope>runtime</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>sesame-application</artifactId>
<version>${platform.version}</version>
<scope>runtime</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>shindig-application</artifactId>
<version>${platform.version}</version>
<scope>runtime</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>tenant-service</artifactId>
<version>${platform.version}</version>
<scope>runtime</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>useradmin-cassandra-store</artifactId>
<version>${platform.version}</version>
<scope>runtime</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>wink-application</artifactId>
<version>${platform.version}</version>
<scope>runtime</scope>
+ <type>bundle</type>
</dependency>
<!-- System bundles -->
Modified: trunk/application-bundles/dashboard-bundle/pom.xml
==============================================================================
--- trunk/application-bundles/dashboard-bundle/pom.xml (original)
+++ trunk/application-bundles/dashboard-bundle/pom.xml Mon Oct 11 12:09:09 2010
@@ -27,6 +27,7 @@
<groupId>org.amdatu.platform</groupId>
<artifactId>authorization</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
</dependencies>
Modified: trunk/application-bundles/gadget-management/pom.xml
==============================================================================
--- trunk/application-bundles/gadget-management/pom.xml (original)
+++ trunk/application-bundles/gadget-management/pom.xml Mon Oct 11 12:09:09 2010
@@ -27,26 +27,31 @@
<groupId>org.amdatu.platform</groupId>
<artifactId>authorization</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>cassandra-persistencemanager</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>cassandra-listener</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>wink-application</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>shindig-application</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.json</groupId>
Modified: trunk/application-bundles/pom.xml
==============================================================================
--- trunk/application-bundles/pom.xml (original)
+++ trunk/application-bundles/pom.xml Mon Oct 11 12:09:09 2010
@@ -16,6 +16,7 @@
<groupId>org.amdatu.platform</groupId>
<artifactId>httpcontext</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
</dependencies>
Modified: trunk/example-bundles/course-gadget/pom.xml
==============================================================================
--- trunk/example-bundles/course-gadget/pom.xml (original)
+++ trunk/example-bundles/course-gadget/pom.xml Mon Oct 11 12:09:09 2010
@@ -17,11 +17,13 @@
<groupId>org.amdatu.application</groupId>
<artifactId>gadgetmanagement</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>shindig-application</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
</dependencies>
Modified: trunk/example-bundles/course-service/pom.xml
==============================================================================
--- trunk/example-bundles/course-service/pom.xml (original)
+++ trunk/example-bundles/course-service/pom.xml Mon Oct 11 12:09:09 2010
@@ -17,36 +17,43 @@
<groupId>org.amdatu.platform</groupId>
<artifactId>wink-application</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>shindig-application</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>cassandra-listener</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>cassandra-application</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>tenant-service</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>profile-service</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>sesame-application</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.json</groupId>
@@ -70,11 +77,13 @@
<groupId>org.amdatu.platform</groupId>
<artifactId>config-template-manager</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>authorization</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
</dependencies>
Modified: trunk/example-bundles/friends-gadget/pom.xml
==============================================================================
--- trunk/example-bundles/friends-gadget/pom.xml (original)
+++ trunk/example-bundles/friends-gadget/pom.xml Mon Oct 11 12:09:09 2010
@@ -17,11 +17,13 @@
<groupId>org.amdatu.application</groupId>
<artifactId>gadgetmanagement</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>shindig-application</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
</dependencies>
Modified: trunk/example-bundles/pom.xml
==============================================================================
--- trunk/example-bundles/pom.xml (original)
+++ trunk/example-bundles/pom.xml Mon Oct 11 12:09:09 2010
@@ -16,6 +16,7 @@
<groupId>org.amdatu.platform</groupId>
<artifactId>httpcontext</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
</dependencies>
Modified: trunk/gadget-bundles/login-gadget/pom.xml
==============================================================================
--- trunk/gadget-bundles/login-gadget/pom.xml (original)
+++ trunk/gadget-bundles/login-gadget/pom.xml Mon Oct 11 12:09:09 2010
@@ -17,16 +17,19 @@
<groupId>org.amdatu.platform</groupId>
<artifactId>httpcontext</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>authorization</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.application</groupId>
<artifactId>gadgetmanagement</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.json</groupId>
Modified: trunk/gadget-bundles/pom.xml
==============================================================================
--- trunk/gadget-bundles/pom.xml (original)
+++ trunk/gadget-bundles/pom.xml Mon Oct 11 12:09:09 2010
@@ -16,11 +16,13 @@
<groupId>org.amdatu.platform</groupId>
<artifactId>shindig-application</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>httpcontext</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
</dependencies>
Modified: trunk/gadget-bundles/sparqlendpoint-gadget/pom.xml
==============================================================================
--- trunk/gadget-bundles/sparqlendpoint-gadget/pom.xml (original)
+++ trunk/gadget-bundles/sparqlendpoint-gadget/pom.xml Mon Oct 11 12:09:09 2010
@@ -17,11 +17,13 @@
<groupId>org.amdatu.platform</groupId>
<artifactId>sesame-application</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>wink-application</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.json</groupId>
@@ -33,6 +35,7 @@
<groupId>org.amdatu.application</groupId>
<artifactId>gadgetmanagement</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
</dependencies>
Modified: trunk/platform-bundles/authorization-service/pom.xml
==============================================================================
--- trunk/platform-bundles/authorization-service/pom.xml (original)
+++ trunk/platform-bundles/authorization-service/pom.xml Mon Oct 11
12:09:09 2010
@@ -17,6 +17,7 @@
<groupId>org.amdatu.platform</groupId>
<artifactId>httpcontext</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
@@ -29,16 +30,19 @@
<artifactId>tenant-service</artifactId>
<version>0.0.4</version>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>config-template-manager</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>wink-application</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.json</groupId>
Modified: trunk/platform-bundles/cassandra-application/pom.xml
==============================================================================
--- trunk/platform-bundles/cassandra-application/pom.xml (original)
+++ trunk/platform-bundles/cassandra-application/pom.xml Mon Oct 11
12:09:09 2010
@@ -51,6 +51,7 @@
<groupId>org.amdatu.platform</groupId>
<artifactId>config-template-manager</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
</dependencies>
Modified: trunk/platform-bundles/cassandra-listener/pom.xml
==============================================================================
--- trunk/platform-bundles/cassandra-listener/pom.xml (original)
+++ trunk/platform-bundles/cassandra-listener/pom.xml Mon Oct 11 12:09:09 2010
@@ -17,11 +17,13 @@
<groupId>org.amdatu.platform</groupId>
<artifactId>cassandra-application</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>cassandra-persistencemanager</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
</dependencies>
Modified: trunk/platform-bundles/cassandra-persistencemanager/pom.xml
==============================================================================
--- trunk/platform-bundles/cassandra-persistencemanager/pom.xml (original)
+++ trunk/platform-bundles/cassandra-persistencemanager/pom.xml Mon Oct 11
12:09:09 2010
@@ -17,6 +17,7 @@
<groupId>org.amdatu.platform</groupId>
<artifactId>cassandra-application</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
</dependencies>
Modified: trunk/platform-bundles/config-template-manager/pom.xml
==============================================================================
--- trunk/platform-bundles/config-template-manager/pom.xml (original)
+++ trunk/platform-bundles/config-template-manager/pom.xml Mon Oct 11
12:09:09 2010
@@ -17,6 +17,7 @@
<groupId>org.amdatu.platform</groupId>
<artifactId>httpcontext</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
</dependencies>
Modified: trunk/platform-bundles/profile-service/pom.xml
==============================================================================
--- trunk/platform-bundles/profile-service/pom.xml (original)
+++ trunk/platform-bundles/profile-service/pom.xml Mon Oct 11 12:09:09 2010
@@ -23,26 +23,31 @@
<groupId>org.amdatu.platform</groupId>
<artifactId>shindig-application</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>cassandra-application</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>cassandra-listener</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>tenant-service</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>authorization</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
</dependencies>
Modified: trunk/platform-bundles/sesame-application/pom.xml
==============================================================================
--- trunk/platform-bundles/sesame-application/pom.xml (original)
+++ trunk/platform-bundles/sesame-application/pom.xml Mon Oct 11 12:09:09 2010
@@ -29,6 +29,7 @@
<groupId>org.amdatu.platform</groupId>
<artifactId>httpcontext</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
</dependencies>
Modified: trunk/platform-bundles/shindig-application/pom.xml
==============================================================================
--- trunk/platform-bundles/shindig-application/pom.xml (original)
+++ trunk/platform-bundles/shindig-application/pom.xml Mon Oct 11 12:09:09 2010
@@ -51,6 +51,7 @@
<groupId>org.amdatu.platform</groupId>
<artifactId>httpcontext</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.libraries</groupId>
@@ -61,11 +62,13 @@
<groupId>org.amdatu.platform</groupId>
<artifactId>cassandra-persistencemanager</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>cassandra-listener</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
</dependencies>
Modified: trunk/platform-bundles/tenant-service/pom.xml
==============================================================================
--- trunk/platform-bundles/tenant-service/pom.xml (original)
+++ trunk/platform-bundles/tenant-service/pom.xml Mon Oct 11 12:09:09 2010
@@ -17,16 +17,19 @@
<groupId>org.amdatu.platform</groupId>
<artifactId>cassandra-application</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>cassandra-persistencemanager</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>cassandra-listener</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
</dependencies>
Modified: trunk/platform-bundles/useradmin-cassandra-store/pom.xml
==============================================================================
--- trunk/platform-bundles/useradmin-cassandra-store/pom.xml (original)
+++ trunk/platform-bundles/useradmin-cassandra-store/pom.xml Mon Oct 11
12:09:09 2010
@@ -22,21 +22,25 @@
<groupId>org.amdatu.platform</groupId>
<artifactId>cassandra-listener</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>cassandra-application</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>cassandra-persistencemanager</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>tenant-service</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
@@ -48,11 +52,13 @@
<groupId>org.amdatu.platform</groupId>
<artifactId>wink-application</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>httpcontext</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.json</groupId>
Modified: trunk/platform-bundles/wink-application/pom.xml
==============================================================================
--- trunk/platform-bundles/wink-application/pom.xml (original)
+++ trunk/platform-bundles/wink-application/pom.xml Mon Oct 11 12:09:09 2010
@@ -41,6 +41,7 @@
<groupId>org.amdatu.platform</groupId>
<artifactId>httpcontext</artifactId>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
</dependencies>
Modified: trunk/pom.xml
==============================================================================
--- trunk/pom.xml (original)
+++ trunk/pom.xml Mon Oct 11 12:09:09 2010
@@ -319,24 +319,28 @@
<artifactId>authorization</artifactId>
<version>${platform.version}</version>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>cassandra-application</artifactId>
<version>${platform.version}</version>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>cassandra-listener</artifactId>
<version>${platform.version}</version>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>cassandra-persistencemanager</artifactId>
<version>${platform.version}</version>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.libraries</groupId>
@@ -349,48 +353,56 @@
<artifactId>gadgetmanagement</artifactId>
<version>${platform.version}</version>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>config-template-manager</artifactId>
<version>${platform.version}</version>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>httpcontext</artifactId>
<version>${platform.version}</version>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>profile-service</artifactId>
<version>${platform.version}</version>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>sesame-application</artifactId>
<version>${platform.version}</version>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>shindig-application</artifactId>
<version>${platform.version}</version>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>tenant-service</artifactId>
<version>${platform.version}</version>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.amdatu.platform</groupId>
<artifactId>wink-application</artifactId>
<version>${platform.version}</version>
<scope>provided</scope>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.apache.wink</groupId>