Can there be multiple artifact cleanup publishers? Reading the docs, I'm confused over how the internals of the publisher might work. For example:
<artifactcleanup cleanUpMethod="KeepLastXBuilds" cleanUpValue="50" /> I realize that this will keep the latest 50 builds, but will this also remove modification history information stored by the modificationHistoryPublisher? I could do this: <artifactcleanup cleanUpMethod="KeepMaximumXHistoryDataEntries" cleanUpValue="50" /> to keep 50 history entries, but that won't remove builds -- at least I don't think so. Can/should I put both of these cleanup publishers in my config file, or can I have only one? Does the KeepLastXBuilds also cleanup the history data entries? Thanks in advance!
