I'm currently converting my ANT build files to maven and is running into some problems.
I have some classes which automatically generates documentation files for themselves if you run their main-method. A part of my build process is to run these main methods, save the output to textfiles and then upload them to the project website.
My ANT-target looks something like this:
<target name="generate-protocol-doc" depends="build">
<java classname="abc.Protocol" output="builds/protocol.txt">
<classpath refid="classpath" />
</java>
</target>
Is there a way to do the same thing in maven?