Sorry for the delay. I went ahead and checked that change into CVS. I don't know when Tom plans to make the next release, but it will be there when he does.
Probably we should also generalize the build.xml file to grab all the jar files in the lib directory. No need to refer to them by name.
Gann
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Agreed-- that's what I usually do, but I didn't write this particular build.xml. If you'd like to modify it, test it, and send it to me, I'd be happy to include it. :-)
Gann
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi all,
First thanks to Gann for covering for me. I'll probably be doing a release in the next week or so. I'll incorporate the changes above or will accept a complete build file which does this. Thanks all...Tom
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
The build file has an error wrt to the included files.
<pathelement location="${lib.dir}/maxent-2.2.jar
in build.xml should be
<pathelement location="${lib.dir}/maxent-2.2.0.jar
Hope it helps.
Regards.
I would be happy to make the change if you guys want me to.
Regards,
Nitin
Sorry for the delay. I went ahead and checked that change into CVS. I don't know when Tom plans to make the next release, but it will be there when he does.
Probably we should also generalize the build.xml file to grab all the jar files in the lib directory. No need to refer to them by name.
Gann
Hi Gann,
Generalizing would make it easier to add new libraries, etc.
The way i do it is:
<path id="xdoclet.path">
<fileset dir="${xdoclet.home}">
<include name="*.jar"/>
</fileset>
<path refid="base.path"/> <!-- Includes other paths -->
</path>
You can use this pattern to do away with named jars.
Regards,
Nitin
Agreed-- that's what I usually do, but I didn't write this particular build.xml. If you'd like to modify it, test it, and send it to me, I'd be happy to include it. :-)
Gann
Hi all,
First thanks to Gann for covering for me. I'll probably be doing a release in the next week or so. I'll incorporate the changes above or will accept a complete build file which does this. Thanks all...Tom
Hi Tom,
I sent a modified build file to Gann. He will probably check it in soon.
Regards,
Nitin
Yes, I checked that in shortly after you sent it.
Gann