You are viewing a plain text version of this content. The canonical link for it is here.
Posted to nmaven-commits@incubator.apache.org by si...@apache.org on 2007/09/20 23:06:00 UTC

svn commit: r577952 - /incubator/nmaven/trunk/bootstrap-build.bat

Author: sisbell
Date: Thu Sep 20 16:05:59 2007
New Revision: 577952

URL: http://svn.apache.org/viewvc?rev=577952&view=rev
Log:
Add rdf profile through commandline.

Modified:
    incubator/nmaven/trunk/bootstrap-build.bat

Modified: incubator/nmaven/trunk/bootstrap-build.bat
URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/bootstrap-build.bat?rev=577952&r1=577951&r2=577952&view=diff
==============================================================================
--- incubator/nmaven/trunk/bootstrap-build.bat (original)
+++ incubator/nmaven/trunk/bootstrap-build.bat Thu Sep 20 16:05:59 2007
@@ -2,7 +2,17 @@
 IF "%phase%"=="" SET phase=install
 ECHO Executing Phase: %phase%
 
-call mvn %phase% -DRdf %*
+if "%1"=="-DrdfProfile.none" (
+    ECHO Building Without RDF Profile
+    call mvn %phase% %*
+
+ ) else (
+    ECHO Building With RDF Profile
+    call mvn %phase% -DRdf %*
+ )
+
+:END
+
 IF errorlevel 1 GOTO END
 
 ECHO Installing 3rd Party Assemblies in the Local Repo