You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by cl...@apache.org on 2013/02/26 19:48:35 UTC

svn commit: r1450354 - in /felix/trunk/ipojo/runtime: core-it/src/it/ipojo-core-annotations-test/src/test/java/org/apache/felix/ipojo/runtime/core/test/annotations/Common.java pom.xml

Author: clement
Date: Tue Feb 26 18:48:35 2013
New Revision: 1450354

URL: http://svn.apache.org/r1450354
Log:
added integration-test to the reactor

Modified:
    felix/trunk/ipojo/runtime/core-it/src/it/ipojo-core-annotations-test/src/test/java/org/apache/felix/ipojo/runtime/core/test/annotations/Common.java
    felix/trunk/ipojo/runtime/pom.xml

Modified: felix/trunk/ipojo/runtime/core-it/src/it/ipojo-core-annotations-test/src/test/java/org/apache/felix/ipojo/runtime/core/test/annotations/Common.java
URL: http://svn.apache.org/viewvc/felix/trunk/ipojo/runtime/core-it/src/it/ipojo-core-annotations-test/src/test/java/org/apache/felix/ipojo/runtime/core/test/annotations/Common.java?rev=1450354&r1=1450353&r2=1450354&view=diff
==============================================================================
--- felix/trunk/ipojo/runtime/core-it/src/it/ipojo-core-annotations-test/src/test/java/org/apache/felix/ipojo/runtime/core/test/annotations/Common.java (original)
+++ felix/trunk/ipojo/runtime/core-it/src/it/ipojo-core-annotations-test/src/test/java/org/apache/felix/ipojo/runtime/core/test/annotations/Common.java Tue Feb 26 18:48:35 2013
@@ -56,6 +56,7 @@ public class Common {
         root.setLevel(Level.INFO);
 
         return options(
+                cleanCaches(),
                 ipojoBundles(),
                 junitBundles(),
                 testedBundle(),

Modified: felix/trunk/ipojo/runtime/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/ipojo/runtime/pom.xml?rev=1450354&r1=1450353&r2=1450354&view=diff
==============================================================================
--- felix/trunk/ipojo/runtime/pom.xml (original)
+++ felix/trunk/ipojo/runtime/pom.xml Tue Feb 26 18:48:35 2013
@@ -34,9 +34,11 @@
     </description>
 
     <modules>
+        <module>annotations</module>
         <module>core</module>
+        <module>core-it</module>
         <module>composite</module>
-        <module>annotations</module>
+        <module>composite-it</module>
     </modules>
 
     <build>
@@ -58,6 +60,18 @@
 
     <profiles>
         <profile>
+            <id>test</id>
+            <modules>
+                <module>core-it</module>
+            </modules>    
+        </profile>
+        <profile>
+            <id>test-all</id>
+            <modules>
+                <module>core-it</module>
+            </modules>    
+        </profile>
+        <profile>
             <id>release</id>
             <build>
                 <plugins>