[jboss-osgi-commits] JBoss-OSGI SVN: r89453 - in projects/jboss-osgi/trunk: blueprint and 1 other directory.

jboss-osgi-commits at lists.jboss.org jboss-osgi-commits at lists.jboss.org
Wed May 27 00:34:18 EDT 2009


Author: thomas.diesler at jboss.com
Date: 2009-05-27 00:34:18 -0400 (Wed, 27 May 2009)
New Revision: 89453

Modified:
   projects/jboss-osgi/trunk/blueprint/pom.xml
   projects/jboss-osgi/trunk/pom.xml
Log:
Skip blueprint tests for equinox and knopflerfish

Modified: projects/jboss-osgi/trunk/blueprint/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/blueprint/pom.xml	2009-05-27 03:10:46 UTC (rev 89452)
+++ projects/jboss-osgi/trunk/blueprint/pom.xml	2009-05-27 04:34:18 UTC (rev 89453)
@@ -21,4 +21,57 @@
     <module>testsuite</module>
   </modules>
 
+  <!-- Profiles -->  
+  <profiles>
+  
+    <!--
+      Name: framework-equinox
+      Descr: Setup for Equinox framework integration testing
+    -->
+    <profile>
+      <id>framework-equinox</id>
+      <activation>
+        <property>
+          <name>framework</name>
+          <value>equinox</value>
+        </property>
+      </activation>
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <configuration>
+              <skipTests>true</skipTests>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+
+    <!--
+      Name: framework-knopflerfish
+      Descr: Setup for Equinox framework integration testing
+    -->
+    <profile>
+      <id>framework-knopflerfish</id>
+      <activation>
+        <property>
+          <name>framework</name>
+          <value>knopflerfish</value>
+        </property>
+      </activation>
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <configuration>
+              <skipTests>true</skipTests>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+
+  </profiles>
+
 </project>

Modified: projects/jboss-osgi/trunk/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/pom.xml	2009-05-27 03:10:46 UTC (rev 89452)
+++ projects/jboss-osgi/trunk/pom.xml	2009-05-27 04:34:18 UTC (rev 89453)
@@ -657,6 +657,10 @@
                   <value>org.apache.xerces.parsers.XIncludeAwareParserConfiguration</value>
                 </property>
                 <property>
+                  <name>jboss.bind.address</name>
+                  <value>${jboss.bind.address}</value>
+                </property>
+                <property>
                   <name>jboss.osgi.framework.properties</name>
                   <value>${jboss.osgi.framework.properties}</value>
                 </property>
@@ -717,6 +721,10 @@
                   <value>org.apache.xerces.parsers.XIncludeAwareParserConfiguration</value>
                 </property>
                 <property>
+                  <name>jboss.bind.address</name>
+                  <value>${jboss.bind.address}</value>
+                </property>
+                <property>
                   <name>jboss.osgi.framework.properties</name>
                   <value>${jboss.osgi.framework.properties}</value>
                 </property>




More information about the jboss-osgi-commits mailing list