How to get Maven project basedir() from my Java code?
|
closed as not a real question by Pere Villega, Marc Gravell♦ Oct 20 '11 at 10:18
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
According to Codehaus, there's a maven property If you include a properties file in your resources, which has the in /src/main/resources, create a file called project.properties, containing
Then, in the POM, enable filtering for /src/main/resources, as outlined in the maven resources filtering documentation linked above. Then, in code, at runtime, load the properties file into a
An alternative would be to process some source files and do substitution in there by hooking into the |
|||||||||
|
|
You can't, because maven is used for building, and doesn't "exist" after the build. If you need that during the build (for example via the exec plugin), then it is either accessible as a system propery or you can pass it as argument to the executed program. |
|||||||||||
|
|
I'm assuming that you want this when run from 'exec:exec' or 'test'. If that's the case, you can get it via
|
|||
|
|