tags:

views:

45

answers:

1

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