Index: src/main/java/org/apache/maven/continuum/DefaultContinuum.java
===================================================================
--- src/main/java/org/apache/maven/continuum/DefaultContinuum.java	(revision 753031)
+++ src/main/java/org/apache/maven/continuum/DefaultContinuum.java	(working copy)
@@ -1465,6 +1465,9 @@
 
         Map context = new HashMap();
 
+        String scmUrl = project.getScmUrl();
+        createProjectScmRoot( projectGroup, scmUrl );
+
         // ----------------------------------------------------------------------
         //
         // ----------------------------------------------------------------------
@@ -1689,7 +1692,7 @@
                 context = new HashMap();
 
                 // CONTINUUM-1953 olamy : attached buildDefs from template here
-                // if no group creation 
+                // if no group creation
                 if ( !projectGroupCreation && buildDefintionTemplateId > 0 )
                 {
                     buildDefinitionService.addTemplateInProject( buildDefintionTemplateId,
@@ -1715,7 +1718,7 @@
                     context.put( AbstractContinuumAction.KEY_SCM_PASSWORD, scmPassword );
                 }
                 // FIXME
-                // olamy  : read again the project to have values because store.updateProjectGroup( projectGroup ); 
+                // olamy  : read again the project to have values because store.updateProjectGroup( projectGroup );
                 // remove object data -> we don't display the project name in the build queue
                 context.put( AbstractContinuumAction.KEY_PROJECT, projectDao.getProject( project.getId() ) );
 

