You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@mina.apache.org by Jiří Kuhn <ji...@clapix.com> on 2008/11/07 14:52:45 UTC

[FTPSERVER] broken build

Hello,

while being in sync with svn trunk I'm not able to build ftpserver using mvn
install. There is missing examples/pom.xml file. To build it, I have to
modify top pom.xml like this:

$ svn diff pom.xml
Index: pom.xml
===================================================================
--- pom.xml     (revision 712122)
+++ pom.xml     (working copy)
@@ -419,7 +419,7 @@
         <module>ftplet-api</module>
         <module>core</module>
         <module>distribution</module>
-       <module>examples</module>
+       <!--module>examples</module-->
       </modules>
       <distributionManagement>
         <repository>
@@ -434,7 +434,7 @@
   <modules>
     <module>ftplet-api</module>
     <module>core</module>
-    <module>examples</module>
+    <!--module>examples</module-->
   </modules>

   <distributionManagement>

Re: [FTPSERVER] broken build

Posted by Niklas Gustavsson <ni...@protocol7.com>.
On Fri, Nov 7, 2008 at 2:52 PM, Jiří Kuhn <ji...@clapix.com> wrote:
> while being in sync with svn trunk I'm not able to build ftpserver using mvn
> install. There is missing examples/pom.xml file. To build it, I have to
> modify top pom.xml like this:

Thanks for reporting, I've commited the POM. Now, I will investigate
why our CI build did not catch this...

/niklas