I have a standard maven project layout.
Some configuration files are stored in src/main/conf.
Now I would like to read these files in my unit test in src/test (e.g. read a properties from one of those files).
How can I exactly do that?
|
|
||||
|
|
You should put such files in Edit: As bbaja42 says, if they're only used for tests they should go in |
|||||||||||||
|
|
You need to configure maven to use these files as test resources. Just specify it in
This settings will force maven to copy configuration files to |
|||||
|
|
Just complementing Christoffer's answer, in order to access src/main/conf within your tests you need to add that folder to your maven-surefire-plugin classpath configuration:
.... Then you'll be able to load files from classpath. Suppose a file as src/main/conf/test.txt: this.getClass().getResourceAsStream("/test.txt") In order to run this inside Eclipse you also need to add that folder to your build path as well. You can find more info at: http://maven.apache.org/plugins/maven-surefire-plugin/examples/configuring-classpath.html |
|||||||
|