commit e737b6a0d1d9094cbab72cafe0bb7595bd006491
Author:     Mauro Talevi <mauro.tal...@aquilonia.org>
AuthorDate: Sat Aug 4 16:50:39 2012 +0200
Commit:     Mauro Talevi <mauro.tal...@aquilonia.org>
CommitDate: Sat Aug 4 16:50:39 2012 +0200

    Made java-spring the default.  Updated README.

diff --git a/README.md b/README.md
index d70cf49..005cd47 100644
--- a/README.md
+++ b/README.md
@@ -22,21 +22,25 @@ NOTE:  The Web Runner is a standalone web application that 
provides a simple web
 The tutorial modules can be built using the following Maven profiles: 
 
 1. groovy-pico
-2. java-spring
+2. java-spring (default)
 3. web-runner
 
-To run: 
+To run default profile using latest stable versions:
 
-$ mvn clean install -P[profile]
+$ mvn clean install -Pstable
 
-To use latest stable versions:
+To run another profile using latest stable versions:
 
 $ mvn clean install -P[profile],stable
 
-To use access the latest snapshot from codehaus: 
+To run using latest snapshot from codehaus: 
 
 $ mvn clean install -s settings.xml -P[profile],codehaus
 
+# Requirements 
+
+Tutorial has been tested with Maven 2.2.1 or 3.0.x and JDK 1.5 or 1.6.  
+
 # License
 
 See LICENSE.txt in the source root (BSD).
diff --git a/pom.xml b/pom.xml
index b864ebb..814c8d0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -13,7 +13,7 @@
     <profile>
       <id>groovy-pico</id>
       <activation>
-        <activeByDefault>true</activeByDefault>
+        <activeByDefault>false</activeByDefault>
       </activation>
       <modules>
         <module>etsy-selenium/groovy-pico</module>
@@ -22,7 +22,7 @@
     <profile>
       <id>java-spring</id>
       <activation>
-        <activeByDefault>false</activeByDefault>
+        <activeByDefault>true</activeByDefault>
       </activation>
       <modules>
         <module>etsy-selenium/java-spring</module>
@@ -30,6 +30,9 @@
     </profile>
     <profile>
       <id>web-runner</id>
+      <activation>
+        <activeByDefault>false</activeByDefault>
+      </activation>
       <modules>
         <module>etsy-selenium/java-spring</module>
         <module>etsy-web-runner</module>



Reply via email to