Re: [JPP-Devel] Weekly Build Of OpenJUMP

2008-03-17 Thread Larry Becker
Hi Stefan, I have 6,000gb per month bandwidth quota total (upload and download). My current sites hosted there typically use about 5gb per month. regards, Larry On Mon, Mar 17, 2008 at 12:35 AM, Stefan Steiniger <[EMAIL PROTECTED]> wrote: > Hei, > > @Larry: How are you upload and download ba

Re: [JPP-Devel] Kosmo and OpenJUMP common area of interests

2008-03-17 Thread Giuseppe Aruta
Dear all, while waiting other opinions, I want to give "my 2 cents" to this discussion. I think there is no need to derfine a "long" term project with the integration of tools from one softwere to the other. If I see the story of Jump and its "sons" and plugins, I image that the main problem is

Re: [JPP-Devel] Kosmo and OpenJUMP common area of interests

2008-03-17 Thread Sunburned Surveyor
Peppe has identified two (2) good opportunities for collaboration, aside from the aspect of library design that I mentioned earlier. [1] Common file formats. [2] Common plug-in model. These were excellent ideas by Peppe. (I would point out that if Kosmo and OpenJUMP can share file formats, for th

[JPP-Devel] Sample Ant Tasks For Nightly Build

2008-03-17 Thread Sunburned Surveyor
If anyone has Ant Tasks that they use to [1] update an source code tree from an SVN repository, and [2] upload a zip file to an FTP site, could you shoot them my way. I'm going to work on modifying my Ant script to automatically update and then commit a build of OpenJUMP to my website. I'll tinker

Re: [JPP-Devel] Sample Ant Tasks For Nightly Build

2008-03-17 Thread Paul Austin
Landon, I use some shell scripts and my maven script to do the build. If you have cygwin on your windows box you can use these The update script goes something like this. #!/bin/bash for module in *; do if [ -d $module ]; then cd $module svn update cd .. fi done Then the build sc