I have done something for Google, but I cannot find anything similar to what I need.
I am using ANTForms for the GUI for our deployment. Developers can select an assembly from a dynamically populated drop-down list , click OK and off.
The way to dynamically populate the drop-down list is currently carried out using ANT, calling the HTTP web service on our ColdFusion server, providing it with a list of the necessary SVN directories. Then CF uses a bit of Java underscore to invoke SVNKit and returns the query result for CF processing. It converts this to a comma separated list, outputs it to ANT, and then creates these dropdown lists.
I use CF because it is our main language. I don’t know any Java, but what annoys me a bit, if I know, I could get ANT to talk directly to Java / SVNKit and therefore completely disable CF. Probably, this will also eliminate the need for an HTTP call, since the SVN setting is local, so the speed increase there is +, this eliminates the dependence on an external source.
Has anyone done this or do you know any working examples that I could see that show ANT is talking to SVNKit directly to do such things?
I looked at the usual SVN ANT tasks in Subclipse, but they have no way to do this.
Any help appreciated James
source
share