You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by jv...@apache.org on 2008/05/22 12:20:58 UTC

svn commit: r659072 - /mina/trunk/pom.xml

Author: jvermillard
Date: Thu May 22 03:20:57 2008
New Revision: 659072

URL: http://svn.apache.org/viewvc?rev=659072&view=rev
Log:
add -Dwith-LGPL-dependencies for building the LGPL depend module : Serial transport


Modified:
    mina/trunk/pom.xml

Modified: mina/trunk/pom.xml
URL: http://svn.apache.org/viewvc/mina/trunk/pom.xml?rev=659072&r1=659071&r2=659072&view=diff
==============================================================================
--- mina/trunk/pom.xml (original)
+++ mina/trunk/pom.xml Thu May 22 03:20:57 2008
@@ -269,9 +269,6 @@
 
   <modules>
     <module>core</module>
-    <!--
-    <module>transport-serial</module>
-    -->
     <module>transport-apr</module>
     <module>filter-compression</module>
     <module>filter-codec-netty</module>
@@ -281,6 +278,23 @@
     <module>integration-jmx</module>
     <module>example</module>
   </modules>
+
+  <profiles>
+    <profile>
+      <id>default</id>
+    </profile>
+    <profile>
+      <id>serial</id>
+      <activation>
+        <property>
+          <name>with-LGPL-dependencies</name>
+        </property>
+      </activation>
+      <modules>
+        <module>transport-serial</module>
+      </modules>
+    </profile>
+  </profiles>
   
   <build>
     <plugins>