Here's the situation.
I use Maven to manage dependencies and compile and deploy the project in development, and that's fine.
But in test and production, the machines don't have Maven, so I need some easy way to have compiled the project for manual deployment to Weblogic there.
My solution was to use Maven to compile the project as an exploded .war and commit that war to SVN.
For deployment in Test and Production you can just then check out the .war and deploy it.
Unfortunately SVN wants to ignore the .class files.
Can I tell it to not ignore them for this project?
The SVN config looks like:
# global-ignores = *.o *.lo *.la *.al .libs *.so *.so.[0-9]* *.a *.pyc *.pyo __pycache__
# *.rej *~ #*# .#* .*.swp .DS_Store
So I can't see that .class files are ignored here.
Or do you have an alternative suggestion for compiling a war and deploying, that doesn't require Maven?