mirror of https://github.com/apache/jclouds.git
Merge pull request #319 from iocanel/master
Class loading issue in JcloudsVersion prevents jclouds 1.3.0 to work under OSGi
This commit is contained in:
commit
3d071b09b1
|
@ -65,7 +65,7 @@ public class JcloudsVersion {
|
||||||
private static String readVersionPropertyFromClasspath() {
|
private static String readVersionPropertyFromClasspath() {
|
||||||
Properties versionProperties = new Properties();
|
Properties versionProperties = new Properties();
|
||||||
try {
|
try {
|
||||||
versionProperties.load(checkNotNull(Thread.currentThread().getContextClassLoader().getResourceAsStream(VERSION_RESOURCE_FILE), VERSION_RESOURCE_FILE));
|
versionProperties.load(checkNotNull(JcloudsVersion.class.getClassLoader().getResourceAsStream(VERSION_RESOURCE_FILE), VERSION_RESOURCE_FILE));
|
||||||
} catch (IOException exception) {
|
} catch (IOException exception) {
|
||||||
throw new IllegalStateException(format("Unable to load version resource file '%s'", VERSION_RESOURCE_FILE), exception);
|
throw new IllegalStateException(format("Unable to load version resource file '%s'", VERSION_RESOURCE_FILE), exception);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue