I'm using maven 2.1.0 and have a project with multiple modules. Example modules:
- spr-resources
- spr-common
spr-common has a dependency on spr-resources
spr-resources contains only files, no classes.
spr-common has a junit in which needs to load a file from spr-resources jar.
I used:
String fileName = getClass().getResource("/jaskeyfile.3DES").getFile();
is = getClass().getClassLoader().getResourceAsStream(fileName);
is.read(data);
And this works when I run the test in IntelliJ, but when I do mvn test, it fails with NullPointerException when I try to do read() on it.
Why is this happening? It should read a file from dependency just fine.
Also, pom.xml in spr-common has dependency on spr-resources (tried both with scope test and without it)
EDIT: I tried also
getClass().getClassLoader().getResourceAsStream("/jaskeyfile.3DES");
with no luck.
EDIT2: The given file exists in the resulting jar, so I guess it should be accessible.
InputStream is = getClass().getResourceAsStream("/java/pkg/with/your/file/filename.txt");? Is thespr-resourcesdependecy really defined in thepom.xmlfile and not only in your IDE? The returned stream isnullif the resource was not found on the CLASSPATH. Edit: Is the file really in thespr-resourcesin thesrc/main/resources/java/pkg/with/your/file/filename.txtdirectory? – Jiri Patera Dec 7 '10 at 11:31