Are there any Ant tasks (basic Ant or plugins alike), or Java that I could execute from inside an Ant target (with <java/>
task), that would allow me to repackage all of my com.myorg.slf4j.**
types to a new package called org.slf4j.impl
?
Hence, post-build, com.myorg.slf4j.LoggerFactory
is now repackaged to org.slf4j.impl.LoggerFactory
, etc. Ideas? Thanks in advance!