John Wubbel wrote:
> Ryan Lee wrote:
>> Yes.  Nothing important was compiled (look in your Java logs, almost 
>> certainly it will warn you about missing classes).
>>
>> Which operating system are you using?  Linux?
>>   
> Thanks, I will check the logs. Yes, we are using Linux.

I believe it's a matter of which version of Ant you use and, as will 
become apparent, the operating system you're using.

Try changing the lines in build.xml under the 'maven' target:

     <exec executable="mvn" os="Linux">
         <arg value="-B package"/>
     </exec>

to:

     <exec executable="mvn" os="Linux">
         <arg value="-B"/>
         <arg value="package"/>
     </exec>

(so it looks like the Mac version of the exec lines).

-- 
Ryan Lee                 [EMAIL PROTECTED]
W3C Research Engineer    +1.617.253.5327
http://simile.mit.edu/
_______________________________________________
General mailing list
[email protected]
http://simile.mit.edu/mailman/listinfo/general

Reply via email to