Hi,

I would like to be able to build the java/samples through a profile, as you
are currently able to do with the other java modules, so that I can run 'mvn
-Psamples' or 'mvn -Pall,samples'.
I've attached a patch (see fix-samples-profile.patch) to do this. If this ok
by everyone, I will go ahead and create a ticket and submit the patch.

Cheers
Chico
Index: pom.xml
===================================================================
--- pom.xml	(revision 8415)
+++ pom.xml	(working copy)
@@ -313,6 +313,14 @@
         <module>java/common</module>
       </modules>
     </profile>
+    
+    <!-- profile to build java/samples -->
+    <profile>
+      <id>samples</id>
+      <modules>
+        <module>java/samples</module>
+      </modules>
+    </profile>
 
     <profile>
       <id>run</id>

Reply via email to