tags:

views:

24

answers:

1

Is there a way to integrate ivy and doxygen? I want to publish my doxygen docs through ivy is that possible? And if so how? Is there documentation for how to?

A: 

I'm not a doxygen user. I'm assuming that you're using it to create a zip archive of documents?

Ivy can be used to publish any type of file. The following tutorial gives an example of how to publish text files to a local repository. To alternatively publish to a remote repository is only a matter of switching resolvers

In previous company, we converted our existing FTP site into an ivy repository by including an ivy.xml file with each release (The vfs resolver supports FTP). This ivy file file became our release descriptor. Internally we used ivy to publish the release and externally customers were now able to mirror our files.

Hope it helps.

Mark O'Connor