You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by lr...@apache.org on 2010/01/15 22:23:21 UTC

svn commit: r899817 - in /tuscany/otest/newlayout: README pom.xml

Author: lresende
Date: Fri Jan 15 21:23:21 2010
New Revision: 899817

URL: http://svn.apache.org/viewvc?rev=899817&view=rev
Log:
Updating profile names to follow the same naming pattern

Modified:
    tuscany/otest/newlayout/README
    tuscany/otest/newlayout/pom.xml

Modified: tuscany/otest/newlayout/README
URL: http://svn.apache.org/viewvc/tuscany/otest/newlayout/README?rev=899817&r1=899816&r2=899817&view=diff
==============================================================================
--- tuscany/otest/newlayout/README (original)
+++ tuscany/otest/newlayout/README Fri Jan 15 21:23:21 2010
@@ -15,9 +15,9 @@
 To run specific spec otests, the following profiles are available 
 
 assembly : Run all Assembly spec otests
-scajcaa  : Run all SCA-J CAA spec otests
-scajci   : Run all SCA-J CI spec otests
-scapolicy: Run all Policy spec otests
+javacaa  : Run all SCA-J CAA spec otests
+javaci   : Run all SCA-J CI spec otests
+policy   : Run all Policy spec otests
 
 To run a specific profile, use:
 
@@ -46,14 +46,14 @@
   
 For the SCA-J CAA tests:
 
-mvn -Pscajcaa eclipse:eclipse
+mvn -Pjavacaa eclipse:eclipse
 
 import tuscany-java-caa-test-runner into eclipse
 import sca-java-caa into eclipse
 
 For the SCA-J CI tests:
 
-mvn -Pscajci eclipse:eclipse
+mvn -Pjavaci eclipse:eclipse
 
 import tuscany-java-ci-test-runner into eclipse
 import sca-java-ci into eclipse

Modified: tuscany/otest/newlayout/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/otest/newlayout/pom.xml?rev=899817&r1=899816&r2=899817&view=diff
==============================================================================
--- tuscany/otest/newlayout/pom.xml (original)
+++ tuscany/otest/newlayout/pom.xml Fri Jan 15 21:23:21 2010
@@ -69,6 +69,9 @@
     <profiles>
         <profile>
             <id>all</id>
+            <activation>
+                <activeByDefault>true</activeByDefault>
+            </activation>
             <modules>
                 <module>sca-assembly</module>
                 <module>tuscany-test-runner</module>
@@ -83,9 +86,6 @@
     
         <profile>
             <id>assembly</id>        
-            <activation>
-                <activeByDefault>true</activeByDefault>
-            </activation>
             <modules>
                <module>sca-assembly</module>
                <module>tuscany-test-runner</module>
@@ -93,7 +93,7 @@
         </profile>
 
         <profile>
-            <id>scajcaa</id>
+            <id>javacaa</id>
             <modules>
                 <module>sca-java-caa</module>
                 <module>tuscany-java-caa-test-runner</module>
@@ -101,7 +101,7 @@
         </profile>
 
         <profile>
-            <id>scajci</id>
+            <id>javaci</id>
             <modules>
                 <module>sca-java-ci</module>
                 <module>tuscany-java-ci-test-runner</module>
@@ -109,7 +109,7 @@
         </profile>
 
         <profile>
-            <id>scapolicy</id>
+            <id>policy</id>
             <modules>
                 <module>sca-policy</module>
                 <module>tuscany-policy-test-runner</module>