You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by gn...@apache.org on 2014/04/22 16:56:06 UTC

git commit: Add another missing dependency for integration tests to force build ordering

Repository: karaf
Updated Branches:
  refs/heads/master 87ec0115c -> 56025161e


Add another missing dependency for integration tests to force build ordering

Project: http://git-wip-us.apache.org/repos/asf/karaf/repo
Commit: http://git-wip-us.apache.org/repos/asf/karaf/commit/56025161
Tree: http://git-wip-us.apache.org/repos/asf/karaf/tree/56025161
Diff: http://git-wip-us.apache.org/repos/asf/karaf/diff/56025161

Branch: refs/heads/master
Commit: 56025161e5075cf48c512d7d2ed6c87ae1c75eeb
Parents: 87ec011
Author: Guillaume Nodet <gn...@gmail.com>
Authored: Tue Apr 22 16:55:54 2014 +0200
Committer: Guillaume Nodet <gn...@gmail.com>
Committed: Tue Apr 22 16:55:54 2014 +0200

----------------------------------------------------------------------
 assemblies/features/enterprise/pom.xml | 7 ++++++-
 pom.xml                                | 6 ++++++
 2 files changed, 12 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/karaf/blob/56025161/assemblies/features/enterprise/pom.xml
----------------------------------------------------------------------
diff --git a/assemblies/features/enterprise/pom.xml b/assemblies/features/enterprise/pom.xml
index b5f6e7f..b081bc2 100644
--- a/assemblies/features/enterprise/pom.xml
+++ b/assemblies/features/enterprise/pom.xml
@@ -167,12 +167,17 @@
             <artifactId>org.apache.aries.application.runtime</artifactId>
             <scope>provided</scope>
         </dependency>
-        <!-- coordinator -->
+        <!-- subsystems -->
         <dependency>
             <groupId>org.apache.karaf.services</groupId>
             <artifactId>org.apache.karaf.services.coordinator</artifactId>
             <scope>provided</scope>
         </dependency>
+        <dependency>
+            <groupId>org.apache.karaf.subsystem</groupId>
+            <artifactId>org.apache.karaf.subsystem.core</artifactId>
+            <scope>provided</scope>
+        </dependency>
     </dependencies>
 
     <build>

http://git-wip-us.apache.org/repos/asf/karaf/blob/56025161/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 5ddc183..82427e0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -668,6 +668,12 @@
             </dependency>
 
             <dependency>
+                <groupId>org.apache.karaf.subsystem</groupId>
+                <artifactId>org.apache.karaf.subsystem.core</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+
+            <dependency>
                 <groupId>org.apache.karaf.scr</groupId>
                 <artifactId>org.apache.karaf.scr.command</artifactId>
                 <version>${project.version}</version>