how do i get maven to run a specific method of mine before it creates the jar file?
basically, i have java code in my junits folder (not a test, just a class with a
main([path to save to])
) that generates an xml file that must be included in the jar. how do i get maven to follow this flow?
compile
run custom method to create xml file passing it the path of the build folder (this method needs the full classpath of the project to run)
jar classes