How can I create maven property with the classpath as part of it ?
A:
You don't need to create anything, simply load your file from the classpath (as mentioned in this answer):
InputStream is = getClass().getResourceAsStream("/file.txt " );
...
Pascal Thivent
2010-04-16 14:19:49